Add default security role so Tomcat stops bitching: SIDP-175
authorlajoie <lajoie@ab3bd59b-922f-494d-bb5f-6f0a3c29deca>
Wed, 28 May 2008 07:47:02 +0000 (07:47 +0000)
committerlajoie <lajoie@ab3bd59b-922f-494d-bb5f-6f0a3c29deca>
Wed, 28 May 2008 07:47:02 +0000 (07:47 +0000)
git-svn-id: https://subversion.switch.ch/svn/shibboleth/java-idp/branches/REL_2@2733 ab3bd59b-922f-494d-bb5f-6f0a3c29deca

src/main/webapp/WEB-INF/web.xml

index 3335287..c016192 100644 (file)
     <listener>
         <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
     </listener>
+    
+    <listener>
+        <listener-class>edu.internet2.middleware.shibboleth.idp.session.ContainerSessionListener</listener-class>
+    </listener>
 
     <!--  Add IdP Session object to incoming profile requests -->
     <filter>
             <transport-guarantee>CONFIDENTIAL</transport-guarantee>
         </user-data-constraint>
     </security-constraint>
+    
+    <security-role>
+      <role-name>user</role-name>
+    </security-role> 
 -->
 
 <!-- Uncomment if you want BASIC auth managed by the container -->