RE: automatic management of cookie

2003-06-25 Thread Oleg Kalnichevski
it, text box expects only double byte input) PFA the log. I highly appreciate your help. Regards, Amit. -Original Message- From: Michael Becke [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 25, 2003 11:46 AM To: Commons HttpClient Project Subject: Re: automatic management

RE: automatic management of cookie

2003-06-25 Thread Oleg Kalnichevski
Project Subject: RE: automatic management of cookie Amin, It is not quite clear what is going on there. My best guess it that the cookie sent by the target host is malformed and as such rejected by HttpClient. However, it is just a guess. We will be able to give more definitive

RE: automatic management of cookie

2003-06-25 Thread Ralph Goers
Have you checked all the responses? Our site uses javascript to determine if the browser supports cookies. If the javascript cannot store a cookie then further requests are rejected. Ralph - To unsubscribe, e-mail: [EMAIL

Re: automatic management of cookie

2003-06-25 Thread Michael Becke
- From: Michael Becke [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 25, 2003 11:46 AM To: Commons HttpClient Project Subject: Re: automatic management of cookie Hello Amit, HttpClient client = new HttpClient(); client.getState().setCookiePolicy(CookiePolicy.COMPATIBILITY); HttpMethod method

automatic management of cookie

2003-06-24 Thread Amit Rana
Hi, Cookies document at http://jakarta.apache.org/commons/httpclient/cookies.html states quote HttpClient supports automatic management of cookies, including allowing the server to set cookies and automatically return them to the server when required. /quote Do we have to make

Re: automatic management of cookie

2003-06-24 Thread Michael Becke
Hello Amit, HttpClient client = new HttpClient(); client.getState().setCookiePolicy(CookiePolicy.COMPATIBILITY); HttpMethod method = new GetMethod(url); Int statusCode = client.executeMethod(method); This will configure HttpClient to use the compatibility cookie mode. This is not necessarily

RE: automatic management of cookie

2003-06-24 Thread Amit Rana
, June 25, 2003 11:46 AM To: Commons HttpClient Project Subject: Re: automatic management of cookie Hello Amit, HttpClient client = new HttpClient(); client.getState().setCookiePolicy(CookiePolicy.COMPATIBILITY); HttpMethod method = new GetMethod(url); Int statusCode