Hi folks, I have a servlet with the following web.xml: <?xml version="1.0" encoding="IS"?> <web-app version="2.4" xmlns="" xmlns:xsi="" xsi:schemaLocation=" "> <security-constraint> <web-resource-collection> <web-resource-name>Protected Area</web-resource-name> <url-pattern>/*</url-pattern> </web-resource-collection> <auth-constraint> <role-name>domuser</role-name> </auth-constraint> </security-constraint> <login-config> <auth-method>FRM</auth-method> <realm-name>Dom4Bereich</realm-name> <form-login-config> <form-login-page>/jsp/loginForm.html</form-login-page> <form-error-page>/jsp/error.html</form-error-page> </form-login-config> </login-config> <security-role> <description>DM-Users</description> <role-name>domuser</role-name> </security-role> <servlet> <servlet-name>SingleS</servlet-name> <servlet-class>com.cr.web.sso.SingleS</servlet-class> <init-param> <param-name>count_popups</param-name> <param-value>1</param-value> </init-param> <init-param> <param-name>popup_1</param-name> <param-value>/BMIWizardDE</param-value> </init-param> </servlet> <servlet-mapping> <servlet-name>SingleS</servlet-name> <url-pattern>/SingleS</url-pattern> </servlet-mapping> </web-app> I packed everything into RT.war, copied it into $TMCAT_HME/webapps, restarted tomcat, but it just doesn't get deployed. In catalina.out there's no hint that anything went wrong. Do I miss something here? Is this way of deployment not correct for a RT-app? Any hints appreciated TIA Gregor