http://www.perlmonks.org?node_id=932086


in reply to Re^3: REST Webservices and CGI.pm
in thread REST Webservices and CGI.pm

Indeed. The code that sends, is this:
my $browser = LWP::UserAgent->new; push @{ $browser->requests_redirectable }, 'POST'; my $response = $browser->post( $url, [], 'content-type'=> 'application/xml', 'content' => $xml );
and just using a commandline curl POST (to indeed check LWP was not doing special stuff and inventing XForms:Model parameters) gives the same result.