https Server access
hi
i want to connect to a https server
but i need to login with my username and password to continue
i even tried:
class MyAuth extends Authenticator {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication("username", "password".toCharArray());
}
}
but it doesn't work.
pls help me

