[jboss-user] [JBoss Portal] - Re: correct use of processAction and doView

2007-07-13 Thread [EMAIL PROTECTED]
Use any technology, this is out of scope of the portal. JSF will do that well. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064025#4064025 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064025 ___

[jboss-user] [JBoss Portal] - Re: correct use of processAction and doView

2007-07-13 Thread sudarshanacharya
How about the form validation, and returning to the form with fields populated? How do you do that? Any examples? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064019#4064019 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=repl

[jboss-user] [JBoss Portal] - Re: correct use of processAction and doView

2007-07-11 Thread sudarshanacharya
setRenderParameter(name, value) takes only string parameters.Is there any method for objects in processAction to be rendered tio doView without putting in session?? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063126#4063126 Reply to the post : http://www

[jboss-user] [JBoss Portal] - Re: correct use of processAction and doView

2007-07-10 Thread [EMAIL PROTECTED]
Is setRenderParameter(name, value) what you are looking for ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062519#4062519 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062519 _

[jboss-user] [JBoss Portal] - Re: correct use of processAction and doView

2007-07-09 Thread sudarshanacharya
"If you want to void that then you should store the error message in the PortletSession and remove it from the session during the render." >> This is what I am uncomfortable with. I have built a whole web portal using >> JBP, but I have to put so many objects and messages in session scope from

[jboss-user] [JBoss Portal] - Re: correct use of processAction and doView

2007-07-07 Thread [EMAIL PROTECTED]
If an error happens, you need to configure the render parameters in the processAction for the next render (hence doView) method, such as: |resp.setParameter("error", "My Error Message"); | Then in doView you can do: |String error = req.getParameter("error"); |if (error !=