Is there a known bug with Struts 3.2?  Is there a known fix for this
problem?  HELP!

I am having a major problem in my application using Struts 3.2.

The problem occurs intermittantly when calling a findForward() from my
Action class.

About every 5th time I call the Action which calls the Form to initialize
the variables, then returns (findForwards) to my JSP to display the current
values from the DB, it stalls and doesn't come back.

ie.

myAction.do?action=load

in myAction.java:

if paramAction.equals("load")  {
    myForm.initialize();        // this calls the method in myForm that
makes the call to the DB and gets
// the current values
    findForward("refresh");  // this returns to the JSP
}

*****STALL OCCURS HERE*******(intermitt. goes out to lunch and doesn't come
back)

myPage.jsp                  // display the current values retrieved from the
DB






Reply via email to