- or download this
<SOAP-ENV:Header>
<Security xmlns="http://schemas.xmlsoap.org/ws/2002/xx/secext"
+>
...
</Security>
</SOAP-ENV:Header>
- or download this
use SOAP::Lite +trace;
my $client = SOAP::Lite
...
$elem2 = SOAP::Data->name('ELEM2' => "value2");
$response = $client->mymethod($elem1,$elem2);
- or download this
my $client = SOAP::Lite
->readable(1)
...
->proxy($proxy)
->envelope($envelope);