Vikram,
I have to tell I find it extremely frustrating that I have to ask the
same questions over and over again.
- What kind of web server are you posting requests to?
- Are you sure your web server supports HTTP/1.1?
- Have you tried using HTTP/1.0 to post requests?
What I can learn from the wire log is that the web server simply fails
to send back any sort of response and HttpClient eventually gives up
waiting for an response status line. I suppose your web server may have
compatibility issues with HTTP/1.1 that presents it from correctly
processing the request. I though it was 'expect: 100-continue'
handshake. Apparently I was wrong.
Please try the following
PostMethod httppost = new PostMethod("http://whatever.com/");
httppost.setHttp11(false);
I hope this helps
Cheers
Oleg
On Sat, 2003-03-15 at 01:19, [EMAIL PROTECTED] wrote:
> Disabling ExpectContinue handshake help either.Is there an other way to
> make it work.
>
> Thanks
> Vikram
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]