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>
  | 
  | 

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830197#3830197

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3830197


-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
_______________________________________________
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to