Re: [PHP-WIN] Question on accessing C# Web Service

2005-03-30 Thread Adam
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

RE: [PHP-WIN] Question on accessing C# Web Service

2005-03-30 Thread Charles P. Killmer
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: