dúvida no ACEGI

pessoal, tudo bem? to com uma dúvida que tá me derrubando no ACEGI
é o seguinte, eu consegui fazer a autenticação/autorização na minha aplicação usando o ACEGI…blz…
mas acontece o seguinte, estou usando aplicação normalmente, e de vez em quando parece que as autorizações expiram (o conteúdo das tags não são exibidos, como se o usuário não tivesse permissão para vê-los).
tipo… a tag que eu to usando para fazer essas permissoes é a <acegijsf:authorize ifAllGranted=“role”>,
quando eu debugo e do um
SecurityContextHolder.getContext().getAuthentication();
O objeto Authentication está nulo. E isso acontece intermitentemente, não sei muito bem quando.
Aqui vai a minha configuração do ACEGI:
ApplicationContext.xml:

&lt;!-- ***************************** --&gt;
    &lt;!--            ACEGI              --&gt;
    &lt;!-- ***************************** --&gt;
    &lt;bean id="filterChainProxy" class="org.acegisecurity.util.FilterChainProxy"&gt;
	  &lt;property name="filterInvocationDefinitionSource"&gt;
	    &lt;value&gt;
	      CONVERT_URL_TO_LOWERCASE_BEFORE_COMPARISON
	      PATTERN_TYPE_APACHE_ANT
	      /**=authenticationProcessingFilter,exceptionTranslationFilter
	    &lt;/value&gt;
	  &lt;/property&gt;
	&lt;/bean&gt;
	
	&lt;bean id="exceptionTranslationFilter" class="org.acegisecurity.ui.ExceptionTranslationFilter"&gt;
	  &lt;property name="authenticationEntryPoint"&gt;&lt;ref local="authenticationProcessingFilterEntryPoint"/&gt;&lt;/property&gt;
	  &lt;property name="accessDeniedHandler"&gt;
	    &lt;bean class="org.acegisecurity.ui.AccessDeniedHandlerImpl"&gt;
	      &lt;property name="errorPage" value="/view/jsp/login.jsf"/&gt;
	    &lt;/bean&gt;
	  &lt;/property&gt;
	&lt;/bean&gt;

	&lt;bean id="authenticationProcessingFilterEntryPoint" class="org.acegisecurity.ui.webapp.AuthenticationProcessingFilterEntryPoint"&gt;
	  &lt;property name="loginFormUrl"&gt;&lt;value&gt;/view/jsp/login.jsf&lt;/value&gt;&lt;/property&gt;
	  &lt;property name="forceHttps"&gt;&lt;value&gt;false&lt;/value&gt;&lt;/property&gt;
	&lt;/bean&gt;
	
	&lt;bean id="authenticationProcessingFilter" class="org.acegisecurity.ui.webapp.AuthenticationProcessingFilter"&gt;
	  &lt;property name="authenticationManager"&gt;&lt;ref bean="authenticationManager"/&gt;&lt;/property&gt;
	  &lt;property name="authenticationFailureUrl"&gt;&lt;value&gt;/&lt;/value&gt;&lt;/property&gt;
	  &lt;property name="defaultTargetUrl"&gt;&lt;value&gt;/view/jsp/mudaSenha.jsf&lt;/value&gt;&lt;/property&gt;
	  &lt;property name="filterProcessesUrl"&gt;&lt;value&gt;/view/jsp/login.jsf&lt;/value&gt;&lt;/property&gt;
	  
	&lt;/bean&gt; 
	
	&lt;bean id="authenticationManager" class="org.acegisecurity.providers.ProviderManager"&gt;
	  &lt;property name="providers"&gt;
	    &lt;list&gt;
	      &lt;ref local="daoAuthenticationProvider"/&gt;
	    &lt;/list&gt;
	  &lt;/property&gt;
	&lt;/bean&gt;
	
	&lt;bean id="daoAuthenticationProvider" class="com.mcp.intranetAcademica.acegi.Autenticacao"&gt;
    &lt;/bean&gt;

Web.xml:

&lt;!-- ACEGI --&gt;
  &lt;filter&gt;
	  &lt;filter-name&gt;Acegi Filter Chain Proxy&lt;/filter-name&gt;
	  &lt;filter-class&gt;org.acegisecurity.util.FilterToBeanProxy&lt;/filter-class&gt;
	  &lt;init-param&gt;
	    &lt;param-name&gt;targetClass&lt;/param-name&gt;
	    &lt;param-value&gt;org.acegisecurity.util.FilterChainProxy&lt;/param-value&gt;
	  &lt;/init-param&gt;
  &lt;/filter&gt;
  &lt;filter-mapping&gt;
	  &lt;filter-name&gt;Acegi Filter Chain Proxy&lt;/filter-name&gt;
	  &lt;url-pattern&gt;/*&lt;/url-pattern&gt;
  &lt;/filter-mapping&gt;

será que alguém sabe o que pode estar acontecendo?
abraços.