G
Guest
Gast
Hallo
Ich habe HTTPClient ein Script geschrieben um auf eine Website zuzugreifen, nun kommt immer die Fehler Meldung 407 Proxy Authentification.
Wisst ihr an was das liegen könnte??
Gruss Michi
Ich habe HTTPClient ein Script geschrieben um auf eine Website zuzugreifen, nun kommt immer die Fehler Meldung 407 Proxy Authentification.
Wisst ihr an was das liegen könnte??
Code:
HTTPConnection con;
con = new HTTPConnection("www.bluewin.ch");
con.setCurrentProxy("proxy.net", port);
AuthorizationInfo.addBasicAuthorization("proxy.net", port, "", "", "");
AuthorizationInfo.setAuthHandler(null);
HTTPResponse response;
response = con.Get("index.html");
int statusCode = response.getStatusCode();
System.out.println(statusCode);
Gruss Michi