int end = responseTO.indexOf("</username>");
if (end == -1) {
index = -1;
}
String username = responseTO.substring(0, end);
users.add(new UserPrincipal(username));
responseTO = responseTO.substring(end + "</username>".length());
index = responseTO.indexOf("<username>");
}
}
} catch (Exception e) {