I've tried a solution using the Mail class, using Yahoo! POP3 server:
public class mailClient
{
String eMail, passWord;
public mailClient(String eMail, String passWord)
{
this.eMail=eMail;
this.passWord=passWord;
}
public PasswordAuthentication getPasswordAuthentication()
{...
Well, I need to write the method in order that I can login an actual server from a Java app. that invokes that method. I've already built the appropiate HTTP request that simulates the form submission, but I'm having some troubles when parsing it to Java.
Hi there,
For my monthly programming project, I have to develop a boolean method that validates any password on any Web server. The user introduces the account name and its password, and the method returns true if the password belongs to that account. For example, if my Hotmail account is...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.