RE: Yahoo login with Httpclient

2004-05-05 Thread Kalnichevski, Oleg
HttpClient Project; [EMAIL PROTECTED] Subject: RE: Yahoo login with Httpclient I think I am just not familar with HttpClient enough to handle the cookies and redirects, would you be kind enough to show me some sample code ? Thanks. Frank -Original Message- From: Oleg Kalnichevski [mailto

RE: Yahoo login with Httpclient

2004-05-04 Thread Min (Frank) Ni
Any luck in trying to get a page after logging into Yahoo with HttpClient ? Frank -Original Message- From: Michael Becke [mailto:[EMAIL PROTECTED] Sent: Thursday, April 29, 2004 12:35 AM To: Commons HttpClient Project Subject: Re: Yahoo login with Httpclient Well, I've tried a variety

RE: Yahoo login with Httpclient

2004-05-04 Thread Oleg Kalnichevski
? Frank -Original Message- From: Michael Becke [mailto:[EMAIL PROTECTED] Sent: Thursday, April 29, 2004 12:35 AM To: Commons HttpClient Project Subject: Re: Yahoo login with Httpclient Well, I've tried a variety of things, but I cannot successfully login to yahoo. Attached

RE: Yahoo login with Httpclient

2004-05-04 Thread Min (Frank) Ni
Project Subject: RE: Yahoo login with Httpclient Frank, I thought the problem had been resolved. What's wrong with taking MrPostman's code as a starting point and implementing the same thing using HttpClient? Oleg On Tue, 2004-05-04 at 23:41, Min (Frank) Ni wrote: Any luck in trying to get

RE: Yahoo login with Httpclient

2004-04-30 Thread Min (Frank) Ni
- From: Michael Becke [mailto:[EMAIL PROTECTED] Sent: Thursday, April 29, 2004 10:28 PM To: Commons HttpClient Project Subject: Re: Yahoo login with Httpclient Oops. Yes, I'm using HttpClient from the HEAD branch. If you take out the references to HttpMethodParams and add the following

RE: Yahoo login with Httpclient

2004-04-30 Thread Min (Frank) Ni
OK thanks. Should the second GetMethod() in loginMD5() be PostMethod() ? Frank -Original Message- From: Michael Becke [mailto:[EMAIL PROTECTED] Sent: Friday, April 30, 2004 10:19 AM To: Commons HttpClient Project Subject: Re: Yahoo login with Httpclient Hi Frank, I was also unable

Re: Yahoo login with Httpclient

2004-04-30 Thread Michael Becke
[mailto:[EMAIL PROTECTED] Sent: Friday, April 30, 2004 10:19 AM To: Commons HttpClient Project Subject: Re: Yahoo login with Httpclient Hi Frank, I was also unable to get this to work. I just wanted to post the code that I was trying with, thinking that it may help you to figure this one out. Mike

RE: Yahoo login with Httpclient

2004-04-30 Thread Min (Frank) Ni
through ^_^ Frank -Original Message- From: Michael Becke [mailto:[EMAIL PROTECTED] Sent: Friday, April 30, 2004 11:06 AM To: Commons HttpClient Project Subject: Re: Yahoo login with Httpclient I'm not sure. The POST/GET is being done via JavaScript, and I'm not exactly sure which it's

RE: Yahoo login with Httpclient

2004-04-30 Thread Min (Frank) Ni
Hi Mike, Oleg : I've been trying different things and it seems MrPostman (inside www.sf.net ) got me a little closer. I can use the following programs and try to log into Yahoo. Although I still can't see the logged-in page, but if I supply the wrong Id/password, it will tell me, seems to me

RE: Yahoo login with Httpclient

2004-04-30 Thread Min (Frank) Ni
Briefcase or Yahoo Geocities cites without logging in again, just like the browser does ? Some sample program would be nice. Thanks. Frank -Original Message- From: Oleg Kalnichevski [mailto:[EMAIL PROTECTED] Sent: Friday, April 30, 2004 4:34 PM To: Commons HttpClient Project Subject: RE: Yahoo

RE: Yahoo login with Httpclient

2004-04-30 Thread Oleg Kalnichevski
the session cookie to be able to access all of them without having to reauthenticate Oleg Frank -Original Message- From: Oleg Kalnichevski [mailto:[EMAIL PROTECTED] Sent: Friday, April 30, 2004 4:34 PM To: Commons HttpClient Project Subject: RE: Yahoo login with Httpclient Frank

RE: Yahoo login with Httpclient

2004-04-29 Thread Min (Frank) Ni
HttpClient Project Subject: Re: Yahoo login with Httpclient Well, I've tried a variety of things, but I cannot successfully login to yahoo. Attached is the code that I've been using. It includes two methods, one to simulate logging in from a browser with JavaScript turned off, and another

RE: Yahoo login with Httpclient

2004-04-28 Thread Min (Frank) Ni
, April 27, 2004 6:25 PM To: Commons HttpClient Project Subject: Re: Yahoo login with Httpclient Frank, You need to use so called form-based login. Have a look at this sample application: http://cvs.apache.org/viewcvs.cgi/jakarta-commons/httpclient/src/examples/FormLoginDemo.java?rev

RE: Yahoo login with Httpclient

2004-04-28 Thread Roland Weber
:RE: Yahoo login with Httpclient Hi Oleg: Thanks for your reply. Two days ago I tried the FormLoginDemo, but after I saw your e-mail I tried again and got the following response, with my Sun Developer Id and password

RE: Yahoo login with Httpclient

2004-04-28 Thread Kalnichevski, Oleg
] Subject: RE: Yahoo login with Httpclient Hi Oleg: Thanks for your reply. Two days ago I tried the FormLoginDemo, but after I saw your e-mail I tried again and got the following response, with my Sun Developer Id and password

Re: Yahoo login with Httpclient

2004-04-28 Thread Michael Becke
difficult to work around (see the redirect guide). I am sure it should not be that difficult to form-based login with get my.yahoo.com working. Give it another try Yes, one wouldn't think so :) I took a look at this last night, and it seems that yahoo does some weird stuff. In particular they

Re: Yahoo login with Httpclient

2004-04-28 Thread Michael Becke
Well, I've tried a variety of things, but I cannot successfully login to yahoo. Attached is the code that I've been using. It includes two methods, one to simulate logging in from a browser with JavaScript turned off, and another to simulate with JS on. Perhaps someone else can figure it

Re: Yahoo login with Httpclient

2004-04-28 Thread Chris Lamprecht
[EMAIL PROTECTED] Sent: Wednesday, April 28, 2004 11:35 PM Subject: Re: Yahoo login with Httpclient Well, I've tried a variety of things, but I cannot successfully login to yahoo. Attached is the code that I've been using. It includes two methods, one to simulate logging in from a browser

Re: Yahoo login with Httpclient

2004-04-27 Thread Oleg Kalnichevski
Frank, You need to use so called form-based login. Have a look at this sample application: http://cvs.apache.org/viewcvs.cgi/jakarta-commons/httpclient/src/examples/FormLoginDemo.java?rev=1.1.2.1only_with_tag=HTTPCLIENT_2_0_BRANCHview=markup If it does not cut it for you, let me know. I may try