Hi, i'm having a strange problem to load classes from the directory WEB-INF/classes. I placed an url.properties file there, restarted Tomcat (version 5.0.28), but the classes aren't loaded as far as i can see. I've tryed to store the file on other locations (ROOT/, webapps/ etc), even in the $CATALINA_BASE/shared/classes, but no luck at all...
Ofcourse i read http://tomcat.apache.org/tomcat-5.0-doc/class-loader-howto.html, tryed Google etc, but i still couldn't find a solution to my problem. I also cannot find anything in the Tomcat logfiles... This is the content of my url.properties: ---- # Basic pages ADMIN_LOGIN_URL = /admin/jsp/login.jsp ADMIN_HOME_URL = /admin/jsp/home.jsp ADMIN_WEBSITE_HOME_URL = /admin/jsp/website.jsp # List pages ADMIN_USER_LIST = /admin/user/userList.jsp ADMIN_THEMA_LIST = /admin/thema/themaList.jsp ADMIN_STYLE_LIST = /admin/style/styleList.jsp ADMIN_TEMPLATE_LIST = /admin/template/templateList.jsp ADMIN_MODULE_LIST = /admin/module/moduleList.jsp ADMIN_NEWS_LIST = /admin/news/newsList.jsp # Edit pages ADMIN_USER_EDIT = /admin/user/userEdit.jsp ADMIN_THEMA_EDIT = /admin/thema/themaEdit.jsp ADMIN_STYLE_EDIT = /admin/style/styleEdit.jsp ADMIN_TEMPLATE_EDIT = /admin/template/templateEdit.jsp ADMIN_MODULE_EDIT = /admin/module/moduleEdit.jsp ADMIN_NEWS_EDIT = /admin/news/newsEdit.jsp # Data actions DATA_ACTION_FIND = 1; DATA_ACTION_CREATE_NEW = 2; DATA_ACTION_SAVE_CURRENT = 3; DATA_ACTION_UPDATE_CURRENT = 4; DATA_ACTION_DELETE_CURRENT = 5; DATA_ACTION_COPY_CURRENT = 6; DATA_ACTION_EDIT = 7; ----- I guess i do something wrong, but i cannot find what.... Thx for help!