http://qs321.pair.com?node_id=1158374


in reply to AnyEvent::HTTP not sending ContentLength ?

The docs for AnyEvent::HTTP (which I haven't used) show the headers being passed in to http_request() as a reference to a hash, not the hash itself. Try:

my $headers = { Content-Length => 2345, }; http_request 'PUT' => $url, 'headers' => $headers, ...

I can't see a simple way to turn on tracing in AnyEvent::HTTP either, which isn't helping my debugging.

Maybe setting $ENV{ PERL_ANYEVENT_VERBOSE } see http://search.cpan.org/~mlehmann/AnyEvent-7.12/lib/AnyEvent.pm#ENVIRONMENT_VARIABLES


The way forward always starts with a minimal test.

Replies are listed 'Best First'.
Re^2: AnyEvent::HTTP not sending ContentLength ?
by ForeverLearning (Novice) on Mar 20, 2016 at 19:32 UTC
    my $headers={} did the trick. Thanks ! Also thanks to the debug pointer.