- or download this
<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope ...>
...
</getStamp>
</soap:Body>
</soap:Envelope>
- or download this
<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope ...>
...
</getStamp>
</soap:Body>
</soap:Envelope>
- or download this
$client = SOAP::Lite
-> proxy($endpoint);
...
$client->default_ns($namespace);
$res = $client->getStamp($xml_file);
- or download this
$method = SOAP::Data->name('getStamp')->attr({xmlns => $namespace});
$res = $client->call('getStamp',
SOAP::Data->name('getStamp')->attr({xmnls => $namespace})->value($xml_
+file)
);
- or download this
<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope ...>
...
</getStamp>
</soap:Body>
</soap:Envelope>