i insert this part to my web.xml :
    <security-constraint>
         <web-resource-collection>
              <web-resource-name>view dept data</web-resource-name>
              <url-pattern>/login/*</url-pattern>
              <http-method>GET</http-method>
              <http-method>POST</http-method>
         </web-resource-collection>
         <!--<auth-constraint>-->
              <!--<role-name>user</role-name>-->
         <!--</auth-constraint>-->
         <user-data-constraint>
              <transport-guarantee>CONFIDENTIAL</transport-guarantee>
         </user-data-constraint>
    </security-constraint>
now when i type http://localhost:8080/myapp browser go to 
https://localhost:8443/myapp
but after login browser dont com back to http://localhost:8080/myapp
thanks

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3988808#3988808

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3988808
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to