-2
votes
1answer
54 views

One action can have two method?

in asp.net, one controller can have many ActionResult return many ways. public class HomeController : Controller { public ActionResult Index() { ViewBag.Message = "Modify this ...
0
votes
1answer
35 views

ajax is not capturing actual response from Struts2 action class

The below ajax method firing method in action class and action class failing (with null pointer exception with all stacktrace); but my ajax always goes into success: function.? Please let me know why ...
-2
votes
0answers
27 views

action without result config also can redirect to jsp page [closed]

my boss gave me a web project yesterday i found there is a action method without any result config not in struts.xml, not in annotation but i debug into DefaultActionInvocation [line: 209] - ...
-1
votes
0answers
65 views

How reload a JSP page inside a DIV if the result of a Struts 2 action is input or error

I have this action in a stuts.xml file: <action name="validar" class="validar.action.Validar" method="execute"> <result name="success">/validar.jsp</result> <result ...
1
vote
2answers
107 views

Struts2 ActionContext and Response for chaining actions

I have a pretty complex problem about struts2 chaining actions, thanks in advance for your patience reading my problem. I will try my best to describe it clearly. Below is my struts.xml: <?xml ...
0
votes
1answer
157 views

get value of <s:select> in action class

I want to create combobox in jsp with struts. My jsp page is: <s:form id="form-sign-up" class="round styled" action="signUp" method="post" name="myForm" theme="xhtml" ...
0
votes
0answers
109 views

redirect from action to external url in Struts2

I am trying similar thing as of this question redirect external url in browser but it is not working with me at all. Action code: public String getMail(){ try { //some code ...
-1
votes
1answer
67 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 ...
0
votes
2answers
71 views

Struts 2 - Date instance become String

when I submit the form, input error is occur. JourneyDate is instance of 'Date'. But ,here it become String which is not accepted by the setter and getter. <s:hidden name="JourneyDate" ...
0
votes
0answers
150 views

proper way to call a struts2 action along with setting variable values

I have a struts.xml like <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" ...
0
votes
0answers
151 views

Input as type Interceptor-ref name=json and result as type stream in struts.xml single action

I want in struts.xml input as type interceptor-ref name="json" and result as type stream single action like : <action name="downloadAction" method="download" class="DownloadAction"> ...
0
votes
1answer
73 views

How to remove the extensions from url

I have designed an application using struts2, and need to remove the extensions for example www.myweb.com/register.action How to remove the .action so when I click on register it call ...
0
votes
2answers
435 views

Struts2 JSON Writer Exception on sending JSON Response

I have encountered lots of exceptions that I do not find to be helpful to solve my proble, here are them Class org.apache.struts2.json.JSONWriter can not access a member of class ...
0
votes
1answer
537 views

Struts2 How to Return a JSON Response

I am currently creating a web-application where the users can fetch tags from the database as JSON, here is my struts action public String execute(){ Gson gson = new Gson(); String ...
5
votes
4answers
511 views

How do I run an action on server startup using Struts2?

I have to execute a struts2 action on server startup rather than on the first request. Thanks in advance.
1
vote
1answer
290 views

Using struts2 to redirect with dynamic parameters not working

I'm having an issue while trying to redirect mapping with dynamic parameters. The way I'm mapping in Struts2: <action name="Delete" class="templateLalaAction" method="remove"> <result ...
0
votes
2answers
56 views

How to make an action running by default when users access the system

I want to make an action running by default when users access my web site. This is a classic Java EE project that is developed with Struts2 and Tomcat. I know how to do this in web.xml: ...
0
votes
1answer
274 views

Struts2 dynamic url action in IBM Portal

I'm trying to create a dynamic menu bar using struts2 url tag. I got the list of menus from webservice and try to generate corresponding URL to each menu. I tried this code <s:iterator ...
0
votes
1answer
195 views

struts2 taglib Object access in jsp

HI i have created one action, that contain one Document Object. I want to display those properties in jsp. i used to struts tag i am not able to get it , i am able to get string property of action , ...
0
votes
2answers
353 views

Struts2: values from action are not seen in jsp, but they are seen in the javascript code from jsp

In action I have a variable which has getter on it. private String myActionVariable = "predefined...."; public String getMyActionVariable () { return myActionVariable; } In jsp, I try to use ...
0
votes
2answers
128 views

Accessing Struts2 Properties in Included JSPs

I want to access Struts2 Action bean properties in included jsp files of my main jsp Main.jsp [where I can access Action Bean] <s:if test="%{assignedProductBean.productCode =='NOMADIC'}"> ...
1
vote
1answer
346 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
2answers
3k views

Struts2: How to detect submit button clicked in multiple submit buttons scenario in single Action class?

I have a form in a jsp. There are two submit buttons: "Search" and "Add New" button. <s:form name="searchForm" action="employeeAction" method="post"> <s:textfield name="id" ...
2
votes
1answer
2k views

Struts2: method attribute in <s:submit> button doesn't work

I have a form in jsp. There are two submit buttons: "Search" and "Add New" button. I had set each button with their own method attribute. <s:form name="searchForm" action="employeeAction" ...
0
votes
0answers
106 views

Struts2 servlet as action

I want to convert an upload servlet to an Struts2 action. The servlet is used by an applet to upload a file to the server. This is a "third party" applet - I cannot change it anyhow. Applet is ...
0
votes
1answer
116 views

need to call a struts action for every particular interval time and the result need to reflect in jsp

I need to call a struts-action for every particular interval time and the result need to reflect in front end (*.jsp)
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
2answers
498 views

struts2 action redirect to “outside” url

i need my action to be able to redirect to outside url address, lets say for exemple http://google.com Right now i have: <default-action-ref name="home" /> <global-results> <result ...
0
votes
1answer
487 views

using annotations with struts 2 in jboss not finding actions

The application is using Jboss and has an ear file which contains an war file and a jar file. The war contians all our web pages. The action classes which I have annotated are in the jar file that ...
4
votes
1answer
1k views

Struts2 - Actions with multiple methods?

I'm new in this site and this is my first question. I have to do a website, I'm using java and Struts2, but I'm new with Struts2. In my site I have to do requests to Facebook and get authenticated ...
0
votes
0answers
253 views

how to pass dynamic values to href?

i need to pass dynamic values by EL <s:a href="profile/${siteMember.id}/${siteMember.username}" >${siteMember.username}</s:a> IDE warns, href does not accept any expressions.but when i ...
1
vote
1answer
161 views

how to show eclipse console in my jsp page?

I have a method in action page, it will take more time to execute so I have write some description on console window. But now i want to show the description on text area in jsp page. how to show like ...
0
votes
1answer
238 views

browser buttons call actions with submitting forms in struts2

browser forward and backward buttons call actions with submitting forms in struts2 (ex.Login form).i need to submit forms just manually clicking the submit button of the form. following code can be ...
1
vote
1answer
1k views

Struts2 parameters is coming null in action class when using Interceptors

When I am using Interceptors, the values on Action class coming as null. I have removed the Interceptors, the values coming perfect from the JSP page. Login.jsp <s:form id="loginFrm" ...
0
votes
2answers
227 views

Calling a Struts action of one application in other different application

I have a struts based application1(purely in java) which uses .vm for page design like dashboard(charts,graph etc.) Now I have another application2 (php) where I would like to call the dashboard page ...
0
votes
1answer
283 views

Struts2 : One jsp pages interacting with many Action classes

I'm a beginner in Struts2. I wonder if it would be a problem ( in running or Conception ) if the same page gets in interaction with many Action classes. For example, page.jsp with LoginAction.java, ...
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
1answer
931 views

Struts2 : How to use an attribute of an action class in another action class?

I have 2 Action classes : LoadingFormAction.java and FormValidationAction.java. In the first one, I create the functions which help in uploading data from an Excel file, and in the second I need to ...
0
votes
1answer
694 views

How to disable resubmit of data on refresh or reload of the page

I have a JSP page which has a button, on click of this button an action is performed which does some database update and after successful update the user is navigated to some another page with ending ...
0
votes
2answers
356 views

how to fetch any attribute of any action class to a jsp page..?

I have two jsp pages. one.jsp and two.jsp. On one.jsp there is a form which have a submit button. User submits the form an action say find.action is executed and upon the success of which user ...
0
votes
2answers
236 views

How to setup an action link to delete the row from the table loaded from the table when using struts2

I want to delete a row persistently from a table stored in the database which is being displayed on the jsp page. I have a link Delete (for each row) to delete the row on a single click. My jsp code ...
1
vote
1answer
455 views

Struts2 : Model or Action? What about the Model-Driven class?

I'm not concerned about making a useful project under Struts2, only, but a well structured one, too. I have a bean called Custormer, in which there are necessary attributes and their getters and ...
2
votes
1answer
261 views

Struts2 validation interceptor going to xhtml document

Background: I am using Struts2 with the REST and Convention plugins, so about 99% of my settings are in the classes I write and not in xml files. With Convention, you can configure your server and ...
0
votes
1answer
202 views

Understanding Struts2 actions better

I am trying to learn Struts 2.0 and I am trying to understand the concept of actions better. I have a form which I would want to be pre-loaded with values. The user can change the values in the JSP ...
0
votes
1answer
343 views

Identifying Redirect/Forward Action in Struts2 Incerceptor

I was looking for a way to identify Struts 2 actions which are of type 'Redirect/Forward' in Interceptor, so that I can add some common code for that particular type of Action. Is there any way in ...
0
votes
1answer
626 views

Struts2 - File Upload: Detecting File Size Error

I've implemented an upload utility using Struts2. I'm already restricting uploading a specific file type by programatically checking in my setFileContentType() method in my action class. One ...
0
votes
2answers
635 views

Default result in struts2

Im wondering if it's possible to set a default result that would apply to every action in struts2. For example to say that result "FOO" will always redirect to action BAR or to jsp "BAR.jsp" instead ...
0
votes
0answers
1k views

Pass an ArrayList from jsp to an Action with Struts2

i need help : this is how i try to pass my ArrayList to the action SalvaAction <s:url id="salva" action="SalvaAction"> <s:param name="giorniSettimana" value="giorniSettimana"/> ...
0
votes
1answer
105 views

How to Map the method having interface and class -flow- from action to delegate

Consider a method in delegate Public void findThisMethod(String a,Set b,HashSet c){} So from action class i want to map this method.. Can any one help me out for this case.. From action to ...
1
vote
3answers
112 views

run action on success of a action

I am trying to run another action on the success of first action but what i get is error saying requested resource is not available. Check the below code from struts.xml file. <action name="login" ...

1 2