public CreateUserResponseDocument createUser(CreateUserDocument input)
throws XregistryException {
log.info("Request Received " + input.xmlText());
registryImpl.createUser(findUserDN(), input.getCreateUser().getUserName(), input
.getCreateUser().getDescription());
CreateUserResponseDocument responseDocument = CreateUserResponseDocument.Factory
.newInstance();
responseDocument.addNewCreateUserResponse();
log.info("Response: " + responseDocument.xmlText());
return responseDocument;
}