Reputation: 6620
I get the following error...
Unsupported configuration attributes: [permitAll]
When adding ....
<sec:intercept-url pattern="/nonsecure/**" access="permitAll" />
I'm on Websphere with Spring 2.5.
Can anyone help?
Jeff Porter
Upvotes: 22
Views: 17836
Reputation: 1639
you have to add use-expressions tag to your http configuration in security xml for example:
<http auto-config="true" use-expressions="true">
...
...
</http>
Upvotes: 57
Reputation: 6760
To be able to use expressions such as [permitAll] you have to add a a WebExpressionVoter to your AccessDecisionManager
Upvotes: 9