- or download this
my $soap_wdsl = 'example.wsdl'; # retrieved previously
my $client = XML::Compile::WSDL11->new( $soap_wdsl );
...
</tns:setTransaction>
</SOAP-ENV:Body>
- or download this
my $soap_wdsl = 'https://example.com/service/API?wsdl';
my $client = SOAP::Lite->new;
...
<PARAMS HERE>
</setTransaction>
</SOAP-ENV:Body>
- or download this
$client->ns('http://soap.example.com/');
...
<PARAMS HERE>
</namesp1:setTransaction>
</SOAP-ENV:Body>
- or download this
$soap_wdsl = 'https://example.com/service/API?wsdl';
$client = new SoapClient( $soap_wdsl );
...
</ns1:setTransaction>
</SOAP-ENV:Body>