Tagged Questions
0
votes
1answer
130 views
Confirmation after server side validation Struts 1
I've been doing a lot of research for this solution but it seems that most answers are in ASP.NET. I am using the html:form tag within my JSP. What I am trying to achieve is showing a simple ...
0
votes
1answer
193 views
Struts 1 action not getting called within javascript function in jsp
I am using the display tag to display my list onto a table. I am trying to have a button to delete a row based on the row id. The id is getting passed to my javascript function but the action is not ...
-1
votes
1answer
72 views
Hide extension for action class in struts2.0.14 version
I need to hide action extension in Struts2.0.14 version.
By configuring the below things it is working fine in Struts2.1.8 version. But it not working in the 2.0.14 version, i am getting these sort ...
-1
votes
2answers
72 views
Struts how to add new action and new form to existing form
I have an existing form which has an existing action which works great, I need to add to this a browse button to attach files in this same JSP.
To do this I added enctype="multipart/form-data" to the ...
1
vote
1answer
351 views
Add Action Message In Struts 2 Interceptor After Action Invocation
I have a unique problem with passing an action message in a JSON result.
Right now, if I add an action message within my action (in a JSON action), I will pick that up in JavaScript and capture the ...
1
vote
0answers
114 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"
...
2
votes
1answer
2k views
get values entered on jsp to action class
How Can I get the value when I type something new into the jsp and then submit the list to the actionclass? Currently I am able to submit to the action class from the jsp and see the new list that I ...
0
votes
1answer
317 views
Struts (1.2.9) action mapping error: No action instance for path '/foo' could be created
I get this error :No action instance for path '/foopath' could be created
WHEN
-FORM-
package com.company.appname.web.forms;
public class fooForm extends ActionForm {
...
-ACTION-
package ...
1
vote
3answers
2k views
Passing messages from action to JSP in struts2
I am trying to use addActionMessage() and addActionError() to pass messages and error from actions (e.g. in execute()) to the forwarded page.
In the JSP, I use:
<s:if ...
0
votes
1answer
260 views
Submit a form in Struts : in an iframe context and without having the form fields as attribute of the action
I have got a tricky problem. I have a page with three iframes, each one calls a struts action to display the content.
Now, in one of the iframes, there is a (struts) form and a (struts) submit ...
1
vote
1answer
66 views
Send error message on <html:errors> in Action
I'm doing some operations in my action and want to show an error message when some data input are not in the valid range. We usually do a pre-checking with a javascript method but in this case i can't ...
0
votes
0answers
141 views
how to handle all requests in struts2 (including slashes)
I don't know how to handle all requests in struts2 (including dots and slashes). I tried:
action name="*"
and
action name="*/*"
It is good for requests that contain one slash but not for more ...
0
votes
0answers
177 views
ServletRequest forward call is resulting in a redirect
Within the perform() method of an action I am using
request.getRequestDispatcher(url).forward(request, response);
to forward to a url instead of doing a redirect to save the round trip.
...
1
vote
1answer
2k views
How to create JSON object in the jsp page
iam developing a web application in struts 1.3 , i have a situation that i have a grid and some contols on the jsp page ,say i have one dropdown list, one textfield , one add button and one submit ...
0
votes
1answer
1k views
http status 404 servlet action not available
I get the following error on submitting a jsp file:
HTTP Status 404 - Servlet action is not available
type Status report
message Servlet action is not available
description The requested resource ...
0
votes
0answers
171 views
Seems like struts validate method doesn't work anymore when using spring
I am now moving to Struts for my presentation layer. I have done a simple example using Struts alone (not really, actually, I test an example inside a simple maven project). From now on, I am likely ...
0
votes
0answers
231 views
ActionForward not forwarding to a page
i am developing an application in struts 1.3 in net beans i have a link on clicking on that link i am forwarding to a login page if the session of the user has expired here i am making use of struts ...
0
votes
1answer
262 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
2answers
265 views
HOWTO point an <action> in struts.xml to a different <action>?
Basically when the user goes to example.com I want to serve it the same content I would have, if it went to example.com/news. Below is the code snippet.
Current COnfig
<action name="" ...
2
votes
1answer
438 views
help with creating an action class (java)
Hi I have a jsp below:
<form action="testPage.do" method="post" name='testForm' id="testForm">
<h2><bean:message bundle="test" key="label.header1"/></h2>
...
0
votes
1answer
80 views
problem with # character in java
I have a problem, I'm getting a text from a textarea, from a jsp page, I'm using struts, all works fine, but, when I write a # character, the character # not arrive to the action so, I have tried too ...
0
votes
1answer
301 views
How to intercept the navagation between Struts2 Actions
I´m using Struts2.
Is it possible to identify and intercept when a user navegates do another Action?
I need to identify if the user is going to an Action different then the one he is currently on.
0
votes
1answer
985 views
Large data passing to JSP page from Struts 1.3 Action subclass
I want to send a large amount of data to a JSP page from an Action subclass.
My questions:
What is the most effective way to send data from an Action subclass to a JSP page in Struts?
What ...
0
votes
1answer
241 views
rewrite URL to affect “save as” filename
My application is in JSP/Struts and running on WebSphere. I don't have access to the server /really/ so I'm trying to do all this from within the app itself (Struts actions & config, JSP, etc).
I ...
1
vote
2answers
2k views
Passing a Java object from one Struts action to another
In one of my Struts action I've got the following code in a method:
...
List<Object> retrievedListOfObjects = c.getListOfObjects();
return mapping.findForward("view");
}
fw_view leads ...
2
votes
1answer
4k views
Can you do a struts2 action redirect using POST instead of GET?
<action name="actionA" class="com.company.Someaction">
<result name="success" type="redirect-action">
<param name="actionName">OtherActionparam>
<param ...
1
vote
2answers
421 views
Handling hundreds of actions in Struts2
I've inherited a struts 1 web application where, in order to reduce the number of Action classes (I guess this is the reason), lots of actions are mapped inside a single Action class, like:
public ...
0
votes
3answers
129 views
Which is the best approach?
I have a question regarding struts.
I have a HashMap which has nearly 50 entries. Now I have to define this map inside an action class, say TestAction. As you know, this action class extends the ...
0
votes
3answers
339 views
Data type used in action forms
Hi can somebody explain that if i declare variables of other types (except string) in the form beans what problems I might face ?