• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

problem in getting data from request

 
Ranch Hand
Posts: 131
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
i have the following setup
I have Action class (PL1079DispatchAction) which
populates a DynaValidatorForm (PL1820DeleteForm)and
puts it in the request, and forwards to a jsp, this
jsp has a bean defined with request scope with the
same form which was set in Action class
(PL1079DispatchAction) so i get the values set in
DynaValidatorForm in my jsp, and then from this jsp i
submit to another Action class (PL1820DeleteAction),
and in this Action class (PL1820DeleteAction) i want
the DynaValidatorForm(PL1820DeleteForm) set in my
first Action class (PL1079DispatchAction) in request,
But in the second Action class(PL1820DeleteAction) i
dont get the values set in request in my first Action
class(PL1079DispatchAction),
What wrong am i doing???
here are my definiations of in struts-config xml
<!-- form bean for mapsForm -->
<form-bean name="mapsForm"
type="org.apache.struts.validator.DynaValidatorForm"
dynamic="true">
<form-property name="nextpage"
type="java.lang.String" />
<form-property name="goto"
type="java.lang.String" />
<form-property name="select"
type="java.lang.String[]" />
</form-bean>
<!-- form bean for Pl1820Delete -->
<form-bean name="PL1820DeleteForm"
type="org.apache.struts.validator.DynaValidatorForm"
dynamic="true">
<form-property name="input1"
type="java.util.ArrayList" />
</form-bean>
<action name="mapsForm"
type="com.pfizer.maps.action.planning.PL1079DispatchAction"
validate="false"
input="/pages/planning/PL1079Display.jsp"
parameter="nextpage" scope="request"
path="/pages/planning/PL1079DispatchAction">
<forward name="add"
path="/pages/planning/PL1079Add.jsp" />
<forward name="change"
path="/pages/planning/PL1079Change.jsp" />
<forward name="delete"
path="/pages/planning/PL1079Delete.jsp" />
<forward name="home"
path="/pages/planning/PL1079Display.jsp" />
</action>
<!-- action mapping for Pl1820Delete-->
<action name="PL1820DeleteForm"
type="com.pfizer.maps.action.sop.PL1820DeleteAction"
validate="false" input="/pages/sop/PL1820Delete.jsp"
scope="request" path="/pages/sop/PL1820Delete">
<forward name="success"
path="/pages/sop/PL1820DispatchAction.do?nextpage=home"
/>
</action>
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic