[jboss-user] [JBoss Seam] - Re: Ajax4JSF , Seam 2.0B and JBoss 4.2GA -> Resource filter

sannegrinovero do-not-reply at jboss.com
Sat Jul 28 13:09:58 EDT 2007


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



More information about the jboss-user mailing list