I have some trouble submitting user data to a server by using Soap. All i get is:
Error Fetching http body, No Content-Length, connection closed or chunked data
try PHP 5.3 with
$client = new SoapClient("< some url >",
array(
'trace' => 1,
'stream_context' => stream_context_create(
array(
'http' => array(
'protocol_version' => 1.0,
),
)
),
)
);
With PHP 5.4.4, it didn't work without Transfer-Encoding: chunked
:
$client = new SoapClient("< some url >",
array(
'trace' => 1,
'stream_context' => stream_context_create(
array(
'http' => array(
'protocol_version' => 1.0,
'header' => "Transfer-Encoding: chunked\r\n",
),
)
),
)
);