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:
[WebMethod]
public string HelloWorld(string Additional) {
return "Hello " + Additional;
}
Beklediğim, php müşteri gibi basittir:
$client = new SoapClient('path');
print_r($client->HelloWorld('homm'));
Merhaba Homm
Ama aslında, işlev, yalnızca nesneleri çekmek ve tek üyesi olan nesneyi döndürmek - HelloWorldResult:
$client = new SoapClient('path');
print_r($client->HelloWorld(array('Additional' => 'homm')));
stdClass Object
(
[HelloWorldResult] => Merhaba Homm
)
Ben bu davranışı değiştirebilir miyim? Ben değiştirmek gerekir hangi parçası, sonuçlar ve parametreler dolaylı çalışmak sunucusu (ASP.NET) veya istemci (php)?