I am using org.apache.http.impl.client.DefaultHttpClient
to retrieve xml from a webservice and am trying to determine whether to set
HttpProtocolParams.setUseExpectContinue(params, true)
or
HttpProtocolParams.setUseExpectContinue(params, false)
I am not clear on how to determine this. Can anyone offer a best practices guideline on when this should be true and when it should be false and also the possible implications of each setting?