I am using a Flash module for site navigation (Freeman Flash Browser) However, I'm having difficulty with navigation / redirection, the case of a specific use is as follows: From the welcome page, a user clicks on a country. After that, a map of the Flash Mind will appear. A user browses the mind-map, and clicks on the desired node embedded on this node, link to another page (for example, ./resources/pages/id/AirFreight.xhtml). I can get this page to be loaded, but I can not wiggle this page in Managed Bean. I think this is because the JSF implementation has not been redirected to this new view. Can anyone guide me here? How do I ask for the implementation of my JSF to redirect to Flash in a new view? I am a newbie using JSF 2.0
When someone is calling the page that JSF servlet Is defined on the URL, if a call to bean in the page - it will be applied.
Be sure that you have JSF servlet on this URL mapping:
& lt; Servlet & gt; & Lt; Servlet-name & gt; Faces servlet & lt; / Servlet-name & gt; & Lt; Servlet category & gt; Javax.faces.webapp.FacesServlet & lt; / Servlet category & gt; & Lt; / Servlet & gt; & Lt; Servlet-mapping & gt; & Lt; Servlet-name & gt; Faces servlet & lt; / Servlet-name & gt; & Lt; URL pattern & gt; * JSF & Lt; / Url pattern & gt; & Lt; / Servlet-mapping & gt;
What results do you see? Have you debug the code that it reaches a bean method? Can you post the AirFreight.xhtml code and the Airfant Bean Java code?
Additionally, to consider the Balloon comment, you should see AirFreight.jsf
Comments
Post a Comment