0 Replies Latest reply on Aug 21, 2007 2:52 AM by sandeeprao

    Trouble mapping url pattern to security constraint

    sandeeprao

      My web.xml has the mapping

      <security-constraint>
       <web-resource-collection>
       <web-resource-name>Authenticated</web-resource-name>
       <description></description>
      
       <url-pattern>/*</url-pattern>
       </web-resource-collection>
       <auth-constraint>
       <role-name>Authenticated</role-name>
       </auth-constraint>
       </security-constraint>


      The aplication is deployed at
      http://localhost:8081/portal/portal/CISMS/

      but the security constraint is applied to
      http://localhost:8081/cisms/*

      how do i get it to apply to
      http://localhost:8081/portal/portal/CISMS/*