"baz" wrote : Documentation issue:-(
  | The newest doc for ajax4jsf says:
  | anonymous wrote : 2. Add the following content into th WEB-INF/web.xml file 
of the existing application:
  |   | 
  |   | 
  |   |  <display-name>Ajax4jsf Filter</display-name>
  |   |  <filter-name>ajax4jsf</filter-name>
  |   |  <filter-class>org.ajax4jsf.Filter</filter-class>
  |   | 
  |   | <filter-mapping>
  |   |  <filter-name>ajax4jsf</filter-name>
  |   |  <servlet-name>Faces Servlet</servlet-name>
  |   |   REQUEST
  |   |   FORWARD
  |   |   INCLUDE
  |   | </filter-mapping>
  | Whereas i have to use
  | anonymous wrote :  
  |   |        <display-name>Ajax4jsf Filter</display-name>
  |   |        <filter-name>ajax4jsf</filter-name>
  |   |        <filter-class>org.ajax4jsf.Filter</filter-class>
  |   |    
  |   |    <filter-mapping>
  |   |       <filter-name>ajax4jsf</filter-name>
  |   |       <url-pattern>/faces/*</url-pattern>
  |   |    </filter-mapping>
  | I will post this result to the ajax4jsf mailing list

It is not a documentation issue.

<filter-mapping>
  |  <filter-name>ajax4jsf</filter-name>
  |  <servlet-name>Faces Servlet</servlet-name>
  |   <dispatcher>REQUEST</dispatcher>
  |   <dispatcher>FORWARD</dispatcher>
  |   <dispatcher>INCLUDE</dispatcher>
  | </filter-mapping>

works fine as long as you have Faces Servlet configured properly

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

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

Reply via email to