Picture of Christian 84
Registered 13 years 37 days
Christian 84 Wednesday, 5 July 2017, 11:15 AM
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:

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 smile, thanks.
Picture of Christoph Künkel (innovaphone)
Moderator Registered 15 years 124 days
Christoph Künkel (innovaphone) Wednesday, 5 July 2017, 11:20 AM
1 of 1 users consider this post helpful
Re: PHP Soap Problem, PHP isn't handling SoapClient responses
if you enclose it in a try / catch block?
Picture of Christian 84
Registered 13 years 37 days
Christian 84 Wednesday, 5 July 2017, 02:31 PM
Re: PHP Soap Problem, PHP isn't handling SoapClient responses
Thanks for your reply.

Yes you are totally right, Reading the innopbx.class.php quickly, I thought the exception would be caught there.

But now writing try - catch block in login.php, like this:

try {
$inno = new innoPBX($server, $httpu, $httpp, $user,
array('classmap' => array("UserInfo" => "innoUserInfo",
"CallInfo" => "innoCallInfo",
"AnyInfo" => "innoAnyInfo",
"Group" => "innoGroup",
"No" => "innoNo",
"Info" => "innoInfo",
)));
}

catch(Exception $e) {
echo "Sorry, there was an error: ".$e->getMessage();
}
if (isset($inno)) {

if ($inno->key() == 0)
die(header("location:index.html?loginFailed=true"));

else
header("location:innopbx.php");
}


Have solved the problem and the error was caught.

thanks again and have a nice day
← You can define your color theme preference here