Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
1.0
-
None
-
None
-
Ubuntu linux 5.10, JDK 1.5.0_05, Tomcat 5.5.12, Jetspeed 2.0-M4, MyFaces 1.1.1, Struts Shale
Description
During handling of a render request, the FacesPortlet calls restoreView on the view handler, but not createView if the restoreView returns null. This is causing the Shale view controllers not to be invoked when there is no view stored in the session (for instance the first time the portlet is invoked).
The following change to FacesPortlet line 453 resolves this:
// context.getApplication().getViewHandler().restoreView(context, vi);
ViewHandler viewHandler = context.getApplication().getViewHandler();
UIViewRoot view = viewHandler.restoreView(context, vi);
if (view == null)