30/10/2013, 10:31
|
| | Fecha de Ingreso: agosto-2010 Ubicación: Montevideo
Mensajes: 59
Antigüedad: 14 años, 3 meses Puntos: 0 | |
Respuesta: java.net.ConnectException: Connection refused Bueno encontré la solución, había que setearle el proxy programaticamente:
Código:
import java.net.Authenticator;
import java.net.PasswordAuthentication;
public class ProxyAuthenticator extends Authenticator {
private String user, password;
public ProxyAuthenticator(String user, String password) {
this.user = user;
this.password = password;
}
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(user, password.toCharArray());
}
}
Código:
Authenticator.setDefault(new ProxyAuthenticator("usuario", "pass"));
System.setProperty("http.proxyHost", PROXY_IP);
System.setProperty("http.proxyPort", PROXY_PORT);
Saludos!! |