in reply to Re: http::dav keep_alive not enabled
in thread http::dav keep_alive not enabled

Hi,
you are right, the code was a mess since i was trying everything at once :).
initialising the dav with useragent fixed the problem.
my @ua_args = (keep_alive => 1); my $ua = HTTP::DAV::UserAgent -> new (@ua_args); my $dav = HTTP::DAV->new(-useragent => $ua) ;
thanks a lot for the replies. Cheers, C