extra objects in soap results and responses

booher1

New Member
I try to implement simple SOAP server on ASP.NET and simple client on php and get the problem with response and request format.My server is very simple, take one string and return another:\[code\][WebMethod]public string HelloWorld(string Additional) { return "Hello " + Additional;}\[/code\]I expect, that php client is such simple:\[code\]$client = new SoapClient('path');print_r($client->HelloWorld('homm'));\[/code\]\[quote\] Hello homm\[/quote\]But actually, function take only objects and return object with single member
 
Back
Top