public RemoveHostDescResponseDocument removeHostDesc(RemoveHostDescDocument input)
throws XregistryException {
log.info("Request Received " + input.xmlText());
registryImpl.removeHostDesc(findUserDN(), input.getRemoveHostDesc().getHostName());
RemoveHostDescResponseDocument responseDocument = RemoveHostDescResponseDocument.Factory
.newInstance();
responseDocument.addNewRemoveHostDescResponse();
log.info("Response Sent " + responseDocument.xmlText());
return responseDocument;
}