Home » Web Services » SOAP » Bug #8405
misspelled method-name for call _raiseSoapFault() in Server.php on line 404
Details
| Submitted | 2006-08-09 21:50 UTC |
|---|---|
| From | the-savior at freenet dot de |
| Assigned | yunosh |
| Status | Closed |
| Package | SOAP |
| PHP Version | 4.4.2 |
| OS | Linux Debian Sid |
| Roadmaps | (Not assigned) |
Comments
[2006-08-09 21:50 UTC] the-savior at freenet dot de
Description:
------------
there's a little mistake with the function-call '_raiseSoapFault()' in file 'Server.php' on line 404
currently:
404: $this->_raiseSoapDefault($hr);
correct:
404: $this->_raiseSoapFault($hr);
context in file:
...
function parseRequest(...)
{
...
if ($isok) {
/* Call our header now! */
$header_method = $header_val->name;
$header_data = array($this->_decode($header_val));
/* If there are parameters to pass. */
$hr =& $this->callMethod($header_method, $header_data);
if (PEAR::isError($hr)) {
$this->_raiseSoapDefault($hr);
return null;
}
...
}
...
}