-
1. Re: problem request parameters still alive
jeromej Jul 17, 2012 5:34 AM (in response to guga.java)Hi,
Portlet Bridge 3.1 ? Are you sure ? This version doesn't exist today.
However, JSF 1.2 dont work with Portlet Bridge 3.0, you must migrate to JSF 2
-
2. Re: problem request parameters still alive
guga.java Jul 17, 2012 8:42 AM (in response to jeromej)Sorry, Portlet Bridge version 2.3.1
-
3. Re: problem request parameters still alive
kenfinni Jul 18, 2012 8:51 AM (in response to guga.java)Gustavo,
What you're experiencing is the expected behavior in a portlet environment.
In a portlet the Portlet Bridge makes JSF behave very differently to support portlet lifecycle calls. In a nutshell, when you change the value from false to true on the page of the portlet that has occurred in an ActionRequest. The Portlet Bridge is then responsible for retaining that "state" within JSF during every Render or re Render of that page until another ActionRequest is made against that portlet. This is required because portals can call Render on a portlet many times without that portlet having been involved with user interaction, and this ensures that the content of that portlet does not alter during each of those Render calls.
If you'd like to see functionality to disable this spec compliant feature, then please raise a JIRA for it, and maybe contribute a pull request that would fix it.
Ken