httpGet = webClient.createGetMethod("http://mail.google.com/mail/", "http://gmail.com");
response = webClient.execute(httpHost, httpGet);
entity = response.getEntity();
HttpResponseReader httpResponseReader = new HttpResponseReader();
byte [] bytes = httpResponseReader.readBody(response);
new DataWriter().save(new File("google_mail.html"), bytes);
System.out.println("Login form get: " + response.getStatusLine());
if (entity != null) entity.consumeContent();