Ram, This is not an error, it is merely an info message. A well-behaving (which HttpClient tries to be) is supposed to discard extraneous/unexpected 100-continue messages. What you see here is exactly that: HttpClient detects what appears to be an unexpected 100-continue response and discards it after logging an info message
If you do not want to see info messages, simply set the logger's verbosity to WARN or ERROR, or turn the logging off altogether. Oleg On Mon, 2004-02-02 at 21:04, Ram Iyer wrote: > Hello: > > I am getting the following error when I use httpClient. > > org.apache.commons.httpclient.HttpMethodBase readResponse > INFO: Discarding unexpected response: HTTP/1.1 100 Continue > > I tried several things suggested by the website for similar problems > elsewhere. However, nothing has worked so far. > > e.g: > PostMethod post = new PostMethod(postingUrl); > post.setHttp11(false); > post.setUseExpectHeader(true); > > I have also tried to get the new version of httpClient, but no go! > > The irony is, everything is fine and dandy with Tomcat 4.1. > > Any suggestions? Any help is greatly appreciated. > > Ram > > --- > [This E-mail scanned for viruses by Declude Virus] > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]