Hi, There was an issue related to the failure of myfaces ajax components like inputsuggestajax when used with ajax4jsf in the app. After discussion with a4j devs we come up with a fix;
When configuring the ajax4jsf filter, forceparser init param must be set to false. <filter> <display-name>Ajax4jsf Filter</display-name> <filter-name>ajax4jsf</filter-name> <filter-class>org.ajax4jsf.Filter</filter-class> <init-param> <param-name>forceparser</param-name> <param-value>false</param-value> </init-param> </filter> <filter-mapping> <filter-name>ajax4jsf</filter-name> <servlet-name>Faces Servlet</servlet-name> <dispatcher>REQUEST</dispatcher> <dispatcher>FORWARD</dispatcher> <dispatcher>INCLUDE</dispatcher> </filter-mapping> If you also had problems using ajax4jsf and myfaces ajax stuff together, this may help. Regards, Cagatay

