XWork is a command-pattern framework that is used to power Struts 2 as well as other applications.

learn more… | top users | synonyms

0
votes
0answers
67 views

struts2 404 page comes out, xwork2 error

Hi i'n writing my first application using struts2 framework but i am having trobule upon running it. I'm using Eclipse JUNO and i have the following jars in my /WEB-INF/ lib: commons-io-2.4.jar ...
1
vote
1answer
82 views

struts2 TreeMap: keys with spaces not appearing in action

JSP Code: <s:iterator value="#currentRequisitionGroup.plFldWrap.allPFields" var="pMap" status="hStatus"> <s:iterator value="#pMap.value.paramMdlList" var="paramModel" ...
0
votes
0answers
39 views

I don't know in which part does my action take so long to execute

I have this action public class SomeAction extends ActionSupport{ List someList; public String someProcessing(){ someList = someQuery(); return "success"; } //some ...
0
votes
1answer
235 views

Struts2 : xwork not converting sent parameters

I try to make a basic application with Struts2. My problem is that my parameters are not converted by Xworks. My action attribute (idParticipant) is a String, but the parameter is an array². if I'm ...
0
votes
1answer
181 views

XWork class loading error in startup- Unable to read class [WEB-INF

In a Struts2 application, I'm seeing this error even though there are no issues in the functionality. But I'm seeing some delay in executing every action. This delay is valid for simple actions which ...
0
votes
2answers
413 views

struts2 creating session objects, why and when?

I want to create session only when a user is authenticated successfully in my web application. But for some reason struts2 creating session objects even though we just accessing login page. I went ...
0
votes
1answer
34 views

XWork: How to verify if an action exists or not

I am using weblogic and XWork. I have this error: <Oct 30, 2012 9:06:14 AM GMT> <Notice> <Stdout> <BEA-000000> <ERROR dispatcher.ServletDispatcher - Could not find action ...
0
votes
2answers
1k views

Struts 2 How to pass parameter to action

I use Struts 2 Framework and i want to pass a parameter in my action like this localhost:8080/MyApp/ModifierMessage.action?id=9. In my jsp page i have the following text with the action: <a ...
0
votes
0answers
34 views

what is the difference between this com.opensymphony.xwork2 two classes

com.opensymphony.xwork2.util.TypeConversionException (xwork-2.0.0-j4) and com.opensymphony.xwork2.conversion.TypeConversionException; (xwork-2.1.2) are they same classes?
0
votes
1answer
909 views

Struts2 post List<Map<String,T>> back to an action

I am using struts 2.1.8 and ognl 2.7.3. On my action class, I have a field (the map's keys: 'foo', 'bar'): public class TestAction extends ActionSupport { private static Log log = ...
0
votes
0answers
2k views

Tomcat Memory Leak Using Struts2 xwork

SEVERE: The web application [/ppAdmin] created a ThreadLocal with key of type [com.opensymphony.xwork2.inject.ContainerImpl$10] (value [com.opensymphony.xwork2.inject.ContainerImpl$10@126212dd]) and a ...
0
votes
1answer
437 views

Getting LinkageError while deploying application in JBOSS5

While deploying my app in JBOSS5 (earlier i was deploying in JBOSS4), I get below exception. I guess this error has got something to do with com.opensymphony.xwork2 package used in struts. ...
0
votes
0answers
199 views

Resource bundle (org.eclipse.osgi.framework.internal.core.BundleLoader.findResource(BundleLoader.java:453)) error

This is the exception I get after QC testing.Somehow the same application runs fine on my local machine, but when I deploy it on the server for QC I get this exception but I am able to save the ...
1
vote
0answers
693 views

Struts2 debug=browser does not capture url parameters in action class variables?

I have a very simple action class with one member variable "data". when I submit the normal url it shows value in tomcat console like:Test action data=hello public class ActionTest extends ...
0
votes
1answer
2k views

Is the ValueStack life cycle across the application in struts2?

I can set a property on ValueStack in several ways. ValueStack stack = ActionContext.getContext().getValueStack(); stack.getContext().put("resultDTO",resultDTO); //1. creates a different branch ...
1
vote
1answer
289 views

Java side validation (xwork2) does not work from input error page (Struts2)

I am using Struts2 with jsp pages and xwork validation. My problem is in java side validation, when I first land in input-page due to input errors and after that I leave those errors there and submit ...
0
votes
1answer
418 views

How to set xml:lang value at runtime?

How to change xml:language in runtime? The situation is that person has let's say 'EN' selected as the browser language. Some other user has e.g 'FI' in the very same language property. For the first ...
0
votes
1answer
530 views

Struts 2 action call loses the xwork i18n language setting

I call a function "foo.action?request_locale=en" on my form. There is an xwork-validation on that page and I expect to get an validation error in the given language. What I get is a page in Finnish - ...
0
votes
1answer
84 views

In Xwork, Can't -validation.xml be placed somewhere else than in the same package as the corresponding Action class

I'm working on service side POJO validation using xwork. I am having an action, say ValidationAction.java, and I have a corresponding xml file named ValidationAction-validation.xml, which has ...
0
votes
1answer
217 views

Can we use xwork validation framework to validate pojo in service layer

Can we use xwork validation framework to validate pojo in service layer? It seems we have to extend ActionSupport class which is part of presentation layer to use xwork validations.
1
vote
1answer
106 views

Field Error keys changing with Xwork upgrade to 2.0.6

I've upgraded Xwork from 2.0.4 to 2.0.6 (struts version is 2.0.11.1). The field validation is working correctly, however the keys for the errors are not. For example, I have a required field called ...