1. 程式人生 > >遠端伺服器返回錯誤 (417) Expectation failed的解決方法

遠端伺服器返回錯誤 (417) Expectation failed的解決方法

有次在呼叫第三方介面的時候,一直返回錯誤資訊 “遠端伺服器返回錯誤: (417) Expectation failed”,查詢資料後找到如下解決辦法:

在配置檔案中加入:
<?xml version=”1.0″ encoding=”utf-8″ ?>
<configuration>
<system.net>
<settings>
<servicePointManager expect100Continue=”false”/>
</settings>
</system.net>
</configuration>

這個異常源自HTTP1.1協議的一個規範: 100(Continue)
100(Continue)狀態程式碼的解釋
允許客戶端發request訊息body之前先用request header試探一下server,看server要不要接收request body,再決定要不要發request body。
客戶端在Request頭部中包含
Expect:100-continue
Server接到後  如果回100(continue)這個狀態程式碼,客戶端就繼續發request body。

這個設定是Http1.1才有。