| SOAP-MySOAP documentation | view source | Contained in the SOAP-MySOAP distribution. |
SOAP::MySOAP - An extremely basic SOAP client module
Version 0.023
use SOAP::MySOAP;
my $client = SOAP::MySOAP->new("http://www.server.com/soap.jsp");
my $reply = $soap->request($rawxml);
print $reply;
Creates a SOAP::MySOAP object, a SOAP client that can issue SOAP requests to the $url URL.
Sends $rawxml to the SOAP server and returns the XML that it receives.
| SOAP-MySOAP documentation | view source | Contained in the SOAP-MySOAP distribution. |