Hi, I don't know about samples (which I guess should be a part of some kind of JBoss Portal tutorial) so I can't point you out to one, but...
When the form is submitted, it executes processAction(). I assume that you use appropriate <portlet:actionURL/> tag, otherwise it won't work. In processAction, doView() or other doXXX() actually, you can do whatever you want with the application flow - when a given parameter is passed on redirect a request to another JSP page using RequestDispatcher.include(). It should answer your question. If you don't want to bother about the redirection you could take a look at MyFaces project which comes with a portlet - MyFacesGenericPortlet that is a bridge between JSF and portlet worlds. It's so easy to design a flow in JSF, and you can do it declaratively, in XML. It's tested and works. Jacek View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3901147#3901147 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3901147 ------------------------------------------------------- This SF.Net email is sponsored by: Power Architecture Resource Center: Free content, downloads, discussions, and more. http://solutions.newsforge.com/ibmarch.tmpl _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
