Tagged Questions
0
votes
0answers
124 views
Struts 1.3 How to dynamically change forward from an action to an other action forward specified in Struts-config.xml
I have a dropdown on top of each of my pages. Now after triggering the onchange event of the dropdown, it submits the form and it forwards always to page 1.
What I want it to do is:
Now If the user ...
1
vote
0answers
272 views
How to pass the runtime parameter using the <forward> in the struts-config.xml?
I want to pass the string using the paramter of 'multitablesid' with different name. Because I am using the export to excel using our jar file. Here am using the struts1.2.9. In my scenario I want to ...
1
vote
0answers
111 views
How to change the default input when error occur in struts validate method?
In the struts-config.xml file,action element has a input attribute which used when the actionForm's validate method return some errors.
<action
path="/somepath"
attribute="someForm"
...
0
votes
0answers
303 views
How to refresh page in struts?
i need to refresh the jsp page when forwarding for the particular path. I'm using the struts1.2 i declared in the struts-config.xml using the 'path'. Before i go to the particular path i need to ...
5
votes
2answers
1k views
Redirect or forward
Looking through some legacy code I have in front of me using struts one, I see:
<global-forwards>
...
<forward name="accessDenied" path="/www/jsp/AccessDeniedForm.do" ...
0
votes
1answer
125 views
ActionForm redirect
Good afternoon in my timezone.
I am using struts in the development of an enterprise web application,and what i need is very simple to ask.
In the ActionForm, if the validate method returns a ...
0
votes
1answer
255 views
Forward from Action to Action
Good afternoon in my timezone.
I am developing a web application using struts framework.
In a simple way, when the user call the application the first Action to be call is the SecurityAction, then ...
0
votes
1answer
1k views
Struts 1, redirect works ok but forward gives 404
In a Struts action, if I return an ActionForward with a redirect flag set to true, everything works as expected, i.e. the request ends up on the desired page. But, when I set redirect to false, it ...