非常类似于此处描述的Expect Continue问题C#HTTP POST Returns Error: 417 "Expectation Failed.",我在尝试使用Android中的HttpPost对象POST的服务器上收到“期望失败”错误。
答案 0 :(得分:16)
阻止请求使用“expect continue”的等效修复似乎是这样的:
httpPostInstance.getParams().setParameter(
CoreProtocolPNames.USE_EXPECT_CONTINUE,
Boolean.FALSE);
我在1.6.1下的http://hc.apache.org/httpcomponents-client-ga/tutorial/html/fundamentals.html找到了这个。