<?php
require_once('SOAP/Client.php');
$WSDL = new SOAP_WSDL(
'http://mssoapinterop.org/stkV3/Interop.wsdl');
$client = $WSDL->getProxy();
$response = $client->echoString('this is a test');
print $client->xml;
?>
<?php
require_once('SOAP/Client.php');
$WSDL = new SOAP_WSDL('
http://mssoapinterop.org/stkv3/wsdl/interopTestDocLit.wsdl');
$client = $WSDL->getProxy();
$response = $client->echoString('this is a test');
print $client->xml;
?>