httpQuery.add("Email", this.user);
httpQuery.add("Passwd", this.password);
httpQuery.add("service", this.service);
httpQuery.add("source", this.source);
httpRequest.setData(httpQuery.toString());
String response = httpRequest.send();
String responses[] = response.split("\n");
String authHeader = "Auth=";
for (String r : responses){
if (r.indexOf(authHeader) == 0){
this.authToken = r.substring(authHeader.length());