Chunked data through IIS
I am trying to chunk data through iis but it is not happning I tried
I am trying to chunk data through iis but it is not happning I tried<rewrite> <outboundRules> <!– <rule name=”Remove Content-Length” stopProcessing=”false”> <match serverVariable=”RESPONSE_Content-Length” pattern=”.*” /> <action type=”Rewrite” value=”0″ /> </rule> –> <!– <rule name=”Add Chunked Encoding” patternSyntax=”ECMAScript”> <match serverVariable=”RESPONSE_Transfer-Encoding” pattern=”.*” /> <action type=”Rewrite” value=”chunked” /> </rule> –> and <rule name=”Transfer-Encoding chunked”> <serverVariables> <set name=”RESPONSE_Content-Length” value=”” /> <set name=”RESPONSE_Transfer-Encoding” value=”chunked” /> </serverVariables> <action type=”CustomResponse” statusCode=”200″ /> </rule>and <httpProtocol allowKeepAlive=”false”> <customHeaders> <!– <remove name=”Content-Length” /> <add name=”Transfer-Encoding” value=”chunked” /> –> <add name=”X-Content-Type-Options” value=”nosniff” /> </customHeaders> </httpProtocol>in these cases in response header transfer-encoding is coming as chunked but response body is not coming Read More