RE: Out of luck... was RE: Posting Issues was RE: Cookie Issues

2003-07-01 Thread ross_r
PROTECTED] Sent: Tuesday, July 01, 2003 5:09 PM To: Commons HttpClient Project Subject: Re: Out of luck... was RE: Posting Issues was RE: Cookie Issues Ross, curiously enough, it seems to work for me. Have a look at my code. Please I note that I do not even set the cookies import

Re: Out of luck... was RE: Posting Issues was RE: Cookie Issues

2003-07-01 Thread Oleg Kalnichevski
Ross, curiously enough, it seems to work for me. Have a look at my code. Please I note that I do not even set the cookies import org.apache.commons.httpclient.*; import org.apache.commons.httpclient.methods.*; public class Test { public static void main(String args[]) throws Exception { Ht

RE: Out of luck... was RE: Posting Issues was RE: Cookie Issues

2003-07-01 Thread Wilcox, Mark
x27;Commons HttpClient Project' Cc: Subject: Out of luck... was RE: Posting Issues was RE: Cookie Issues Welp, I have tried everything I can think of cookie types, http 1.0 versus 1.1, even matching the headers line for line. It is even the e

Re: Out of luck... was RE: Posting Issues was RE: Cookie Issues

2003-07-01 Thread Michael Becke
My only other thought is to set the user agent. You can do this with: HttpMethod.setRequestHeader("User-Agent", "Mozilla, etc"); You should make this value the same as what your browser is using. Mike [EMAIL PROTECTED] wrote: Welp, I have tried everything I can think of cookie types, http

Out of luck... was RE: Posting Issues was RE: Cookie Issues

2003-07-01 Thread ross_r
Welp, I have tried everything I can think of cookie types, http 1.0 versus 1.1, even matching the headers line for line. It is even the exact same content-length as the browser trace. I still get the 200 OK instead of the 302 Found with the new location I need. I'm at a loss. Here's my latest