throws XregistryException {
log.info("Request Received " + input.xmlText());
String hostDescAsStr = registryImpl.getHostDesc(findUserDN(), input.getGetHostDesc()
.getHostName());
GetHostDescResponseDocument responseDocument = GetHostDescResponseDocument.Factory
.newInstance();
if (hostDescAsStr != null) {
responseDocument.addNewGetHostDescResponse().setHostDescAsStr(hostDescAsStr);
} else {
responseDocument.addNewGetHostDescResponse().setNilHostDescAsStr();
}
log.info("Response Sent " + responseDocument.xmlText());
return responseDocument;
}