首页 > 代码库 > 异常:The server committed a protocol violation

异常:The server committed a protocol violation

技术分享

 

The server committed a protocol violation. Section=ResponseHeader Detail=‘Content-Length‘ header value is invalid

今天客户端偶然碰到了这个问题,从来没有发生过。

网上收集的资料来看,大部分的解决方案是在 web config文件 和 app config文件添加一个配置:

<system.net>   <settings>    <httpWebRequest useUnsafeHeaderParsing="true" />   </settings> </system.net> 

 

一个 Stack Overflow 的提问:

https://stackoverflow.com/questions/2482715/the-server-committed-a-protocol-violation-section-responsestatusline-error 

 

过了一会儿客户端有一切正常了,这个问题我还搞不明白。

我的服务是部署在Azure云,采用paas服务的方式部署的,具体问题有待深入分析。

 

异常:The server committed a protocol violation