PEAR is archived and read-only

This mirror preserves historical PEAR package releases and metadata so existing references remain available.

Home » Web Services » SOAP » Bug #8405

misspelled method-name for call _raiseSoapFault() in Server.php on line 404

Details

Submitted2006-08-09 21:50 UTC
Fromthe-savior at freenet dot de
Assignedyunosh
StatusClosed
PackageSOAP
PHP Version4.4.2
OSLinux 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;
}
...
}
...
}