Websphere: security-constraint in web.xml is not enforced

后端 未结 1 1597
一整个雨季
一整个雨季 2021-01-23 08:48

I\'m trying to enable SSL on a very old J2EE application I support. The application runs within WebSpehre 6.1. I\'ve enabled application security in the WAS profile running th

1条回答
  •  青春惊慌失措
    2021-01-23 09:06

    If you want to protect the whole application the following pattern should do the trick:

    /*
    

    At least this works on mine 8.5.5

    
        allApp
        
            allresources
            /*
        
        
            CONFIDENTIAL
        
    
    

    Did you restarted the server after enabling application security?

    0 讨论(0)
提交回复
热议问题