I changed the php code to the follows.
http://localhost/TestService/Service1.asmx?WSDL',
'wsdl');
$soap_proxy = $client->getProxy();
$rs = $soap_proxy->HelloWorld(null);
echo $rs;
?>
=== Output ===
Hello World
Array
However the output is till $rs = Array
Am I missing anything, or I need
You could print_r $rs and see exactly what it contains. Otherwise you
could add this to your code to make things simpler.
$soap_proxy = $client->getProxy();
$result = $soap_proxy->HelloWorld();
This is how I do it.
Charles
-Original Message-
From: Adam [mailto:[EMAIL PROTECTED]
Sent: