Yes it is, or at least I believe it is. That is what has me confused. Here is my web.xml
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"> <web-app> <session-config> <session-timeout>480</session-timeout> </session-config> <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> <security-constraint> <display-name>UserSecurity</display-name> <web-resource-collection> <web-resource-name>TranscriptResource</web-resource-name> Accessible by authorized users <url-pattern>*.jsp</url-pattern> </web-resource-collection> <auth-constraint> <role-name>User</role-name> </auth-constraint> <user-data-constraint> <transport-guarantee>NONE</transport-guarantee> </user-data-constraint> </security-constraint> <login-config> <auth-method>FORM</auth-method> <realm-name>UserRealm</realm-name> <form-login-config> <form-login-page>/login.html</form-login-page> <form-error-page>/login_error.html</form-error-page> </form-login-config> </login-config> <security-role> <role-name>User</role-name> </security-role> </web-app> View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3899428#3899428 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3899428 ------------------------------------------------------- This SF.Net email is sponsored by: Power Architecture Resource Center: Free content, downloads, discussions, and more. http://solutions.newsforge.com/ibmarch.tmpl _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
