<?php include_once 'class.SOAPHttpSender.php';
$_soapClient = new SOAPHttpSender("http://xyz.abc.whatever?wsdl");
$_soapClient->__doRequest("name=x&pass=y", "http://xyz.abc.whatever?wsdl", "#urn:xyzwhatever", "12");
// Call a web service method in usual way $_serverResponse = $_soapClient->soapMethod($parameters);
echo "<pre>"; print_r($_serverResponse); echo "</pre>"; ?>
|