Bug in PEAR::SOAP header faults?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi Shane and everyone,

I've come across what looks like a bug in the error handling for SOAP header faults. I'm using 0.8RC2; this might be fixed in CVS already. Instead of returning the actual header fault returned by the header function, a misnamed variable was causing an general empty fault message to be returned instead.

I fixed it by replacing $method_response with $hr on line 338 of Server.php.

Thanks!
	-Chris

Here is the diff of Server.php:

*** Server.php.bak      Tue Oct  7 14:10:36 2003
--- Server.php  Tue Oct  7 14:11:38 2003
***************
*** 335,341 ****
                     $hr =& $this->callMethod($header_method, $header_data);
                     # if they return a fault, then it's all over!
                     if (PEAR::isError($hr)) {
!                         $this->_raiseSoapFault($method_response);
                         return null;
                     }
                     $header_results[] = array_shift($this->buildResult($hr, $this->return_type, $header_method, $header_val->namespace));
--- 335,341 ----
                     $hr =& $this->callMethod($header_method, $header_data);
                     # if they return a fault, then it's all over!
                     if (PEAR::isError($hr)) {
!                         $this->_raiseSoapFault($hr);
                         return null;
                     }
                     $header_results[] = array_shift($this->buildResult($hr, $this->return_type, $header_method, $header_val->namespace));

--
PHP Soap Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [PHP Users]     [Kernel Newbies]     [PHP Database]     [Yosemite]

  Powered by Linux