expectation failed in android during photo upload
while uploading images to server, it gives me expectation failed error response code 417.
My server side coding is in php, and client is android开发者_如何转开发
The RFC says that this is due to an Expect request header that the server can't meet. Look at the request headers sent by your client application, and see what their purpose is and if they're necessary.
request.getParams().setBooleanParameter( "http.protocol.expect-continue", false ) worked in my case
精彩评论