Thanks for the code, but I figured out the issue I was having. My problem
was actually getting the data not parsing chunked text. After taking a
wireshark trace of the traffic I realised that the chunked xml didn't even
hit the php process and instead died somewhere in IIS's fastcgi process.
If
Shawn McKenzie wrote:
whisperstream wrote:
I have a server running that receives xml formatted events from other
services I have no control over. For certain events the transfer-encoding
is chunked.
I was just doing
$input = file_get_contents('php://stdin');
and this works well until there i
whisperstream wrote:
> I have a server running that receives xml formatted events from other
> services I have no control over. For certain events the transfer-encoding
> is chunked.
>
> I was just doing
>
> $input = file_get_contents('php://stdin');
>
> and this works well until there is chunk
I have a server running that receives xml formatted events from other
services I have no control over. For certain events the transfer-encoding
is chunked.
I was just doing
$input = file_get_contents('php://stdin');
and this works well until there is chunked input. Then I tried
$handle = fop
4 matches
Mail list logo