Why doesn't IIS support chunked transfer encoding?

前端 未结 5 1034
一个人的身影
一个人的身影 2021-02-09 04:49

I am making an HTTP connection to an IIS web server and sending a POST request with the data encoded using Transfer-Encoding: chunked. When I do this, IIS simply closes the conn

5条回答
  •  伪装坚强ぢ
    2021-02-09 05:17

    This command came to rescue for me!

    C:\Windows\System32\Inetsrv\Appcmd.exe set config -section:httpCompression
    -[name='gzip'].staticCompressionLevel:9 -[name='gzip'].dynamicCompressionLevel:4

    saved my day... hope it helps someone like me!

提交回复
热议问题