Help for this page

Select Code to Download


  1. or download this
    my $response = $ua->post(
        'http://...',
        Content_Type => 'application/xml',
        Content      => $xml,
    );
    
  2. or download this
    use HTTP::Common::Request qw( POST );
    
    ...
    );
    
    my $response = $ua->request($request);