0 Replies Latest reply on Apr 12, 2004 11:19 AM by zgranj

    Cannot find form ?? in any scope

    zgranj

      Hi, we have an existing struts application that ran fine under wls but I'm having some issues with it running under jboss-3.2.2_tomcat-4.1.27. Here is the unique problem.

      I have one jsp(submissionSummary.jsp) that is used by two action mappings(below are the mappings). When the first mapping is executed (editApplication) the jsp renders fine. If I now go to the editQuoteSummary mapping I get a message that says " cannot find bean applicationSummaryForm in any scope"; now this is the bean from the first action that I executed. Another odd thing; if I click the refresh button on my browser 3 times the page displays fine.






       <action
       path="/application/editApplication"
       type="org.submission.action.EditApplicationAction"
       name="applicationSummaryForm"
       scope="request"
       validate="false">
       <forward name="success" path="/jsp/main.jsp?content=/jsp/common/submissionSummary.jsp&action=/application/saveApplication"/>
       </action>
      
       <action
       path="/quote/editQuoteSummary"
       type="org.submission.action.EditQuoteAction"
       name="quoteSummaryForm"
       scope="request"
       validate="false">
       <forward name="success" path="/jsp/main.jsp?content=/jsp/common/submissionSummary.jsp&action=/quote/saveQuoteSummary"/>
       </action>