Hi,

I want to secure everything but my welcome and logon page in my filterInvocationInterceptor. I do not have a /secure prefix. How can I accomplish that, without having to specify [a-z&&[^lw]] (everything not starting with l (of logon) or w (of welcome)) and [l[a-z&&[^o]] (not starting with lo) ... ? I just want to define the pages I don't want to secure.

I tried to define as first item \A/logon.*\Z= (to set it to no role required) but that gives a NullPointerException.

Stefaan.