The request failed with HTTP status 417: Expectation failed.

      前两天在服务器前端加上一个代理(传说中的CDN用以提高访问速度),出现了一个奇怪的错误,在调用这个服务器上的webservice方法时返回错误: The request failed with HTTP status 417: Expectation failed. 于是google了一下,但没发现这个问题的解决方法。郁闷中,没有改过代码啊,一定是加上代理的问题。于是就上国外的网站找了找,果然有遇到这种问题的,解决方法很简单,就加这么一句,
System.Net.ServicePointManager.Expect100Continue = false; 问题解决了。

你可能感兴趣的:(The request failed with HTTP status 417: Expectation failed.)