/* -------------------------------------------------------------------------------- Soap Client */
echo show_var($SoapClientParam); echo "<br /> <br />";
$client = new SoapClient($ws, $SoapClientParam);
echo "<p><h4>List of available SOAP functions</h4></p>";
$output = $client->__getFunctions();
while (list ($key, $val) = each ($output) ) echo $val."<br />"; echo "<p> </p>";
echo "<p><h4>List of types described in the WSDL for the Web service</h4></p>";
$output = $client->__getTypes();
while (list ($key, $val) = each ($output) ) echo $val."<br />"; echo "<p> </p>";