Hi all,
I am trying to override the web.xml SecurityConstraints using the
Context addConstraint/removeConstraint methods. The context.xml
contains the following element
<WatchedResource>WEB-INF/web.xml</WatchedResource>
I tried the following to override the SecurityConstraints:
// adding the authConstraint
SecurityConstraint sc = new SecurityConstraint();
sc.setAuthConstraint(false);
I've tried to use both the addConstraint(sc) and removeConstraint(sc)
methods to remove the auth-constraint element.
context.addConstraint(sc);
host.addChild(context);
The methods are set correctly but the web.xml security constraints
override these security constraint changes. Is there a way to override
the web.xml security constraints using the
catalina.deploy.SecurityConstaint and Context methods?
Lisa