I have a page in my project that has the following the following code snippet.
$soapclient = new SoapClient("https://mywebserver/ws/service.php?class=userManager&wsdl");
$result = $soapclient->getLogin($username,$password); |
I have 2 problems:
1. When I try and do a "Find Declaration" on getLogin() PhpED cannot find this method
2. When debugging the page although the getLogin() line runs and returns a result, I do not get to see the inner workings of the function.
I presume this is due to the way in which I have initialized $soapclient via a URL rather than including a local file but is there any work around to this please?
The webservice does actually reside on the same web server but I believe it needs to be referenced in the manner above.
Thanks!