Hi, I was having the same problem; a good workaround for me was to edit
web.xml to insert "old style" configuration:

<context-param>
  |             <param-name>org.ajax4jsf.VIEW_HANDLERS</param-name>     
  |             <param-value>com.sun.facelets.FaceletViewHandler</param-value>  
 
  |     </context-param>
  |     <filter>
  |             <display-name>Ajax4jsf Filter</display-name>
  |             <filter-name>ajax4jsf</filter-name>
  |             <filter-class>org.ajax4jsf.FastFilter</filter-class>
  |             <init-param>
  |                     <param-name>enable-cache</param-name>
  |                     <param-value>true</param-value>
  |             </init-param>
  |             <init-param>
  |                     <param-name>forceparser</param-name>
  |                     <param-value>false</param-value>
  |             </init-param>
  |     </filter>
  |     <filter-mapping>
  |             <filter-name>ajax4jsf</filter-name>
  |             <url-pattern>*.seam</url-pattern>
  |     </filter-mapping>

Maybe they documented but didn't implement it yet?
Conversation filter isn't working either.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068462#4068462

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068462
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to