Jump to content

SOAP-ENV:Client Bad Request


obewan

Recommended Posts

I am trying to set up a php SOAP service using wsdl

 

Added this to try and deal with an error about no $HTTP_RAW_POST_DATA:

 

if (isset($HTTP_RAW_POST_DATA)) {
    $request = $HTTP_RAW_POST_DATA;
} else {
    $request = file_get_contents('php://input');
}

$server->handle($request);

 

Now its throwing this error and I cannot find out how to get rid of it.

SOAP-ENV:Client Bad Request

 

Any ideas appreciated.

Link to comment
https://forums.phpfreaks.com/topic/43554-soap-envclient-bad-request/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.