Bigtop

 view release on metacpan or  search on metacpan

docs/keyword_cookbook/RPCSoap/Kids/testclient  view on Meta::CPAN

        xmlns="http://localhost:8080/DefaultNamespace">
            <childName>$child</childName>
      </getBirthDay>
  </soap:Body>
</soap:Envelope>
EO_XML

my $ua = LWP::UserAgent->new();
$ua->agent( 'BigtopTestClient/1.0' );

my $request = HTTP::Request->new(
    POST => 'http://localhost:8080/soap'
);

$request->content_type( 'text/xml; charset=utf-8' );
$request->header( 'Host' => 'localhost' );
$request->header(
        'SoapAction' => 'http://localhost:8080/soap'
);
$request->content( $request_xml );



( run in 0.412 second using v1.01-cache-2.11-cpan-de7293f3b23 )