protected Post createUser(String userName, String password,
String firstName, String lastName, String email,
String authenticationUserName, String authenticationPassword) throws IOException, JAXBException {
String xml = createUserXml(userName, password, firstName, lastName, email);
Post request = new Post(POST_USERS_URL, new SimpleCredentials(authenticationUserName, authenticationPassword));
request.addFile("file", xml.getBytes());
return request;
}