in reply to Using the HTTP::Request and Verifying Results
or (looks more correct to me ) maybeuse HTTP::Request::Common; $req = POST 'http://www.receiver.com/hello.aspx', Host => 'www.receiver.com', Connection => 'Close', Content_type => 'application/x-www-form-urlencoded', Content => [ Data => $pData ];
use HTTP::Request::Common; $req = POST 'http://www.receiver.com/hello.aspx', Host => 'www.receiver.com', Connection => 'Close', Content_type => 'application/x-www-form-urlencoded', Content => [ ID => 'Test', Len => $len, Data => $data ];
|
|---|