protected SFamousPlace ejbHomeQueryByNameImpl
(XMLDispatcherContext xdCtx, SKey rqst)
throws XMLDispatcherUserException, XMLDispatcherAppException {
IFamousPlaceDAO dao = FamousPlaceDAOFactory.getFamousPlaceDAOInstance();
try {
return dao.fetchByName(rqst.getKey());
}
catch (DAOException e) {
logcat.error("DAOError", e);
throw new XMLDispatcherAppException(e.getMessage());
}