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"?
 
 
 <bean id="filterInvocationInterceptor"
class="org.acegisecurity.intercept.web.FilterSecurityInterceptor">
  <property name="authenticationManager" ref="authenticationManager" />

  <property name="accessDecisionManager" ref="accessDecisionManager" /> 
  <property name="objectDefinitionSource">
   <value>
            PATTERN_TYPE_APACHE_ANT
            \A/c/portal/login\Z=ROLE_AUTHENTICATED
            \A/c/portal/logout\Z=ROLE_AUTHENTICATED
            \A/c/portal/layout.*\Z=ROLE_AUTHENTICATED
            \A/group/.*\Z=ROLE_AUTHENTICATED    
   </value>
  </property>
 </bean>
 

- Paul 

 
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Home: http://acegisecurity.org
Acegisecurity-developer mailing list
Acegisecurity-developer@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/acegisecurity-developer

Reply via email to