Comment 4 for bug 113837

Revision history for this message
johannes (j00hannes) wrote :

<?php
  class Service
  {
  }

  require_once('SOAP/Server.php');
  $soap = new SOAP_Server();
  $service = new Service();

  $soap->addObjectMap($service,'urn:soapservice');
  $soap->service($GLOBALS['HTTP_RAW_POST_DATA']); // <= here

?>

the line causing the crash is marked in the source code.

it seems to be a problem of php5 as well because the application crashes caused by an error in the source code of soap. normally it should throw an error instead of jumping to a non existing class method.