I have to create a client in PHP allowing the use of a web service done with Visual Studio (not me who does, just Visual Studio states where it has its importance).
Brief seeking from right to left, I have to chop something, but only the format seems a little hassle to use.
Explanation image, here is my code:
And here's the thing that I see it:Code:$client = new SoapClient('http://short.cs.abo.fi/Comollogin/Service1.asmx?WSDL'); $person = array('UserName' => 'Jean', 'Pwd' => 'Robert'); $result = $client->__soapCall('Login',array('parameters' => $person)); echo "<pre>"; print_r($result); echo "</pre>";
I just tried to view the Name, or the ForName Id but without success, I do not know how it is structured and how I could achieve the things that I want.Code:stdClass Object ( [LoginResult] => stdClass Object ( [Name] => Jean [ForName] => Robert [Id] => 581 ) )


Reply With Quote
Thank you...

Bookmarks