This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Struts and the fly likes scope= Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Frameworks » Struts
Reply Bookmark "scope= "request" in structs-config.xml" Watch "scope= "request" in structs-config.xml" New topic
Author

scope= "request" in structs-config.xml

Sreejith kayappuram
Ranch Hand

Joined: Jun 24, 2008
Posts: 35
hi,
One of my jsp form's text field shows previously entered values even when i reload the form after loading other jsps. I have overrided reset method of form bean and hence each time i load the jsp, the form bean contains only null values ( like name field will be set to null in reset method) but the jsp's corresponding text field shows previouly entered values...
it got corrected when i change

<action path="/prepareuser"
type="com.security.ManageUserAction"
name="UserSearchForm"
validate="false"
scope="request">
<forward name="success" path="usersearch.do" />
</action>

by removing the scope="request" entry

<action path="/prepareuser"
type="com.security.ManageUserAction"
name="UserSearchForm"
validate="false"
>
<forward name="success" path="usersearch.do" />
</action>


could any body please tell me whats the purpose of scope= "request" in structs-config.xml


Thanks
Sreejith
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: scope= "request" in structs-config.xml
 
Similar Threads
2 actions, same form class different instance?
Problem with Struts validator
Deploying struts1.29 appl to struts 1.3.10
I am getting error when starting Tomcat .How can I rectify it?
text field not populating after validate() fails.