I'm trying to protect a resource in tomcat so that only "valid users" (those with a valid login and password in the realm) can access it. They do not necessarily belong to a group in the realm. I have tried with many combinations of the <security-constraint> directive without success. Any ideas?
|
|
|
|||
|
|
|
|
There are several realm implementation in tomcat - memory, database, JAAS and more. The easiest one to configure (though not the most secure) the memory one, which contains a single XML file, usually under conf/tomcat-users.xml:
The realm configuration is under the context, host or engine configurations, like this:
Then, in the web.xml you put the following definition: MRC Customer Care /protected/* role1
The web.xml part is taken (with slight change) from one of our web apps. |
||
|
