>
> Thanks.
I resolve the problem with the following code:
Authenticator.setDefault(new Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(username, new
String(password).toCharArray());
}
)
Mu
