Doctrin has asked for the wisdom of the Perl Monks concerning the following question:

Hello everyone! How do I send data with DELETE request (sic!) ?.. Any ideas about that?.. Thanx in advance UPD: Resolved.
my $content = 'some really important content'; my $HttpReq = HTTP::Request->new( DELETE => $myUrl ); $HttpReq->content_type( 'application/x-www-form-urlencoded' ); $HttpReq->content( $content ); $HttpReq->header( 'Content-Length' => length( $content ) );