Hi!

Ah .... try configuring Spring's RequestContextFilter [1] instead of (or in addition to) the RequestContextListener and use the same filter config (FORWARD,REQUEST) as for Orchestra.

I've done it in the examples with:

<filter>
   <filter-name>springRequestContextFilter</filter-name>
   
<filter-class>org.springframework.web.filter.RequestContextFilter</filter-class>
</filter>

<filter-mapping>
   <filter-name>springRequestContextFilter</filter-name>
   <url-pattern>/*</url-pattern>
   <dispatcher>FORWARD</dispatcher>
   <dispatcher>REQUEST</dispatcher>
</filter-mapping>

For sure, the url-pattern *.faces should make it too .....

Ciao,
Mario


[1] http://www.springframework.org/docs/api/org/springframework/web/filter/RequestContextFilter.html

Reply via email to