Forum Discussion
Chunked data through IIS
I am trying to chunk data through iis but it is not happning I tried
- HridayDuttaMicrosoft
I think, this article should be able to resolve your issue - Enabling “Transfer-encoding: chunked” in the response header with IIS - Microsoft Community Hub
- Abhishek_RajSCopper Contributor
I have already tried the things mentioned in the article It is not working actually when content length is not sent in header then body of message is not coming .In postman response code is coming as 200 ok
but there is no body for the message and when body is coming content length is also coming which idealy should not i.e I have put the configuration that I have used to perform this
- HridayDuttaMicrosoft
As the next step, you can enable FREB (Failed Request Tracing) to gain more insights into the issue. Refer to this article for details on FREB, along with basic troubleshooting and analysis. Keep in mind that the analysis for your specific issue may differ from the examples provided.
- DeletedParece que estás luchando con la configuración de IIS para la codificación fragmentada. Uno de los problemas principales podría ser que aunque hayas configurado los encabezados correctamente, IIS no está fragmentando el contenido del cuerpo de la respuesta.
Aquí hay algunos puntos a considerar:
1. **Salida Buffering**: Asegúrate de que el buffering de salida esté deshabilitado en tu aplicación. Algunas tecnologías como ASP.NET habilitan el buffering de salida de manera predeterminada.
2. **Versión de IIS**: La versión de IIS y la configuración específica de tu aplicación pueden influir en cómo se manejan las respuestas fragmentadas.
3. **Configuración del Protocolo HTTP**: Revisa tu configuración de `httpProtocol` para asegurarte de que todas las configuraciones relacionadas estén correctamente definidas.
4. **Reglas Personalizadas**: Verifica si hay otras reglas o módulos en IIS que puedan estar interfiriendo con la codificación de transferencia.
Como un ejemplo simplificado de cómo podrías definir las reglas de salida y asegurarte de la codificación fragmentada:
```xml
<rule name="Transferencia de codificación fragmentada">
<serverVariables>
<set name="RESPONSE_Content-Length" value="" />
<set name="RESPONSE_Transfer-Encoding" value="chunked" />
</serverVariables>
<action type="Rewrite" url="{R:0}" />
</rule>
<httpProtocol allowKeepAlive="false">
<customHeaders>
<add name="X-Content-Type-Options" value="nosniff" />
</customHeaders>
</httpProtocol>
```
Espero esto te pueda servir, me será de gran ayuda saber una respuesta