PHP Soap Problem, PHP isn't handling SoapClient responses
Hello,
I'm trying to develop login page with users info list and settings using the Soap API class innopbx.class.php.
Now when trying to login with correct username and password everything works as expected and the code runs with no bugs.
But when trying to enter wrong login details (server, httpu or httpp), I get the following error:
Fatal error: Uncaught SoapFault exception: [HTTP] Could not connect to host in C:\xampp\websites\innovaphone.dev\dev\innopbx.class.php:377 Stack trace: #0 [internal function]: SoapClient->__doRequest('__call('Initialize', Array) #2 C:\xampp\websites\innovaphone.dev\dev\login.php(42): innoPBX->__construct('192.168.234.196', 'admin', 'asd', 'Soap', Array) #3 {main} thrown in C:\xampp\websites\innovaphone.dev\dev\innopbx.class.php on line 377
Now as it shows, SoapClient is handling the login problem by itself with returning the function's Soapfault.
But why is that, shouldn't SoapClient return xml response to the innopbx.class.php class, and there it should be handled and then we can return the desired response (Can't Login to PBX, Server Unavailable,... etc).
How can we check the SoapClient's response and furthermore check if the innopbx.class is catching and handling it?
I'm testing with PHP 7.
Line 377 from innopbx.class.php:
I'm trying to develop login page with users info list and settings using the Soap API class innopbx.class.php.
Now when trying to login with correct username and password everything works as expected and the code runs with no bugs.
But when trying to enter wrong login details (server, httpu or httpp), I get the following error:
Fatal error: Uncaught SoapFault exception: [HTTP] Could not connect to host in C:\xampp\websites\innovaphone.dev\dev\innopbx.class.php:377 Stack trace: #0 [internal function]: SoapClient->__doRequest('__call('Initialize', Array) #2 C:\xampp\websites\innovaphone.dev\dev\login.php(42): innoPBX->__construct('192.168.234.196', 'admin', 'asd', 'Soap', Array) #3 {main} thrown in C:\xampp\websites\innovaphone.dev\dev\innopbx.class.php on line 377
Now as it shows, SoapClient is handling the login problem by itself with returning the function's Soapfault.
But why is that, shouldn't SoapClient return xml response to the innopbx.class.php class, and there it should be handled and then we can return the desired response (Can't Login to PBX, Server Unavailable,... etc).
How can we check the SoapClient's response and furthermore check if the innopbx.class is catching and handling it?
I'm testing with PHP 7.
Line 377 from innopbx.class.php:
374 $appname = "PHP PBX SOAP Wrapper";
375 switch ($version) {
376 case 8 :
377 $init = $this->Initialize($user, $appname, true, true, true, true);
378 break;
Any Idea or hint is highly appreciated
, thanks.
Any Idea or hint is highly appreciated
