I am trying to trace down an issue that I have with a Struts application only in Jetspeed 1.6 with Fusion. Looking at the logs I found an exception in the turbine log as follows. 2005-03-27 21:45:12,492 [http-8080-Processor23] ERROR JetspeedLoggingService - java.lang.Exception: redirecting at org.apache.jetspeed.fusion.modules.actions.FusionAccessController.doPerform(FusionAccessController.java:181) at org.apache.turbine.modules.Action.perform(Action.java:87) at org.apache.turbine.modules.ActionLoader.exec(ActionLoader.java:122) at org.apache.turbine.Turbine.doGet(Turbine.java:529) at javax.servlet.http.HttpServlet.service(HttpServlet.java:689) at javax.servlet.http.HttpServlet.service(HttpServlet.java:802) at
It appears that this exception is thrown within the doPerform() method of FusionAccessController class. The method is as below public void doPerform( RunData data ) throws Exception { boolean throwit = false; try { super.doPerform(data); .................................................................................... traverse(portlets, windowId, windowState, (JetspeedRunData)data); throwit = true; } else } ............... } catch (Throwable t) { t.printStackTrace(); log.error("error in fusion access controller", t); } finally { if (contextComponent != null && context != null) { contextComponent.release(context); } if (throwit) throw new Exception("redirecting"); } } It looks like throwit will be true at all times and the exception will be thrown whenever the doPerform() method is called. I guess this is related to changes in the navigational state. I am not sure whether this exception is of any relevance to my problem, still thought I would think out loud. Thanks, Hema ~~~~~~~~~~~~~~~~~~ Hema Menon --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]