Yes I tried that too. I actually tried a lot of combinations.
I have found this Link on the appache site where it indicates a way to do it:
Code:
HttpClient httpclient = new HttpClient();
httpclient.getHostConfiguration().setProxy("myproxyhost", 8080);
httpclient.getState().setProxyCredentials("my-proxy-realm", " myproxyhost",
new UsernamePasswordCredentials("my-proxy-username", "my-proxy-password"));
GetMethod httpget = new GetMethod("https://www.verisign.com/");
try {
httpclient.executeMethod(httpget);
System.out.println(httpget.getStatusLine());
} finally {
httpget.releaseConnection();
}
I'd like to try this but it is not possible to access httpclient easily.
Does someone have tried to access facebook behind a proxy?