Re: [Acegisecurity-developer] In the Acegi config xml file why use/A and /Z in the URL pattern?

2007-01-23 Thread Garvey, Paul M (GE Comm Fin)
config xml file why use/A and /Z in the URL pattern? The best explanation of FilterSecurityInterceptor ObjectDefinitionSource is here: http://acegisecurity.org/docbook/acegi.html#filter-invocation-authorizat ion Basically, you are using regular expressions in the example you gave and the \A means

Re: [Acegisecurity-developer] In the Acegi config xml file why use /A and /Z in the URL pattern?

2007-01-23 Thread Ray Krueger
The best explanation of FilterSecurityInterceptor ObjectDefinitionSource is here: http://acegisecurity.org/docbook/acegi.html#filter-invocation-authorization Basically, you are using regular expressions in the example you gave and the \A means "beginging of the line" and \Z means "end of the line"

[Acegisecurity-developer] In the Acegi config xml file why use /A and /Z in the URL pattern?

2007-01-22 Thread Garvey, Paul M (GE Comm Fin)
In the following snippet below why are /A and /Z used in the URL? For example " \A/c/portal/login\Z"? Why not remove the /A and /Z to leave "/c/portal/login"? PATTERN_TYPE_APACHE_ANT \A/c/portal/login\Z=ROLE_AUTHENTICATED \A/c/portal/logout\