obewan Posted March 20, 2007 Share Posted March 20, 2007 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.