i need to access ssl page through a proxy ....
Code:
DefaultHttpClient httpclient = new DefaultHttpClient();
HttpGet httpget = new HttpGet("https://secure.pragprog.com/login");
HttpResponse response;
response = httpclient.execute(httpget);
what should i do to access it through proxy
Please some one help ...