I'm writing a small Java application that logs in to my mail.com webmail account and retrives the new message headers if any.
By http POSTing I've managed to log in but the webmail service relies on a cookie being present. So when I try to GET the page on which the new mails are listed mail.com thinks I'm logged out since it can't read the cookie.
How to I manage cookies in Java? It should be possible since there are Java web browsers (i think...).
Greatful for any tips and ideas!
/Jan Andersson