Hide Forgot
Description of problem: The following part of web.xml of the RichFaces demo is required for a4j:push to work over Portlet Bridge: <context-param> <param-name>A4J.AJAX.Push.URL</param-name> <param-value>/richFacesPortlet/faces/a4j.push</param-value> </context-param> The value of the parameter needs to point to the web app context. In this case the value is set to "richFacesPortlet", which is the default name of the war file for Portlet Bridge, but the demo is bundled with EPP as "richFacesPortlet-[Portlet Bridge version].war" and thus a4j:push doesn't work by default. Two possible ways to fix this: 1, Distribute the example as "richFacesPortlet.war". 2, Alter web.xml of the example before it's packaged with EPP. Since we already dropped the version in the name of the Seam example for a similar reason, I'd suggest going with the first option and get rid of the version in the name of all the bridge examples.
Renaming examples removing version.
Verified again with 5.2.2.CR01.