Status code of 100 on client.executeMethod();

2003-06-06 Thread asharm3
Can anyone please let me know what does status code of 100 mean as a return from client.executeMethod(post). The result returns 100 and the subsequent code is not executed. I am not able to retrieve the response as Stream. Would appreciate if anyone can look at the code below to see if I have

Re: Status code of 100 on client.executeMethod();

2003-06-06 Thread Michael Becke
It sounds like you are using Alpha 3. I would suggest upgrading to Beta 1. Also, you should only need to set the content length if you are posting an InputStream. In that case you should use post.setRequestContentLength(). Mike [EMAIL PROTECTED] wrote: Can anyone please let me know what

Re: Status code of 100 on client.executeMethod();

2003-06-06 Thread Oleg Kalnichevski
100 status code is supposed to be used internally by HTTP agents when engaging in so-called 'expect: 100-continue' handshake. The target HTTP server responds with status code 100 to tell the client that it is ok to send the request body. The purpose of 'expect: 100-continue' handshake is to avoid