The Apache Struts web framework is a free open-source solution for creating Java web applications. The Struts framework is designed to help developers create web applications that utilize a MVC architecture.

learn more… | top users | synonyms

1
vote
0answers
9 views

setting a HashMap in request Or ActionForm from JSP

Strut 1.3 Application : Iam setting a hashMap into request & using it to create a checkbox list at JSP. Iam creating a chekbox with name="checkboxname", and I have associated variable (of type ...
-1
votes
0answers
14 views

Invoke Actions in Struts 1.x remotely

I am currently working on legacy application written in Struts 1 framework (I think it is Struts 1.2) and we are now extending the application by another one that is running remotely. In order to do ...
1
vote
1answer
10 views

Struts 1 Textbox to integer validation

In struts 1 if you try to bind a html:text field directly to an integer in the ActionForm then there isn't a chance to validate it correctly when the user enters a non-numberic value. If the user ...
1
vote
0answers
16 views

Force Struts1 to use the correct encoding for the resource file

Seems like the Struts1 uses InputStream to read i18n resource file(s) instead of a Reader. There is a struts.i18n.encoding property in the Struts2, but I could not find a similar settings for the ...
0
votes
0answers
9 views

How to get File object in Struts Action from Jsp

We need a help in File upload. I have a requirement in which i want to upload multiple photos. I am thinking to send HTML File tag aobject to struts action without using Form-Bean. In form-bean i have ...
0
votes
1answer
29 views

onChange event not working when change automated

I have an onChange event on one select box (usageDisplays), which populates the next select box based on the selected value of the first: <html:select name="usageDisplays" property="name" ...
0
votes
0answers
8 views

Migrating JBoss AS 5 to AS 7 Struts1.3 application

I'm trying to upgrade from JBoss 5 to 7 this is legacy web application build in Struts 1.3 and uses spring. The application has some internal jar file which are in WEB-INF\lib but whent i start server ...
0
votes
0answers
10 views

Why has struts 1.2 lost a message resources instance after 4 days up?

Server has been up for 4 days (and would have accessed message resources at least a million times) and then javax.servlet.ServletException: javax.servlet.jsp.JspException: ServletException in ...
0
votes
1answer
19 views

struts1 why session is not null after session.invalidate()

Even though I invalidate the session meaning I called session.invalidate() in signoutAction class (struts action); why is the session obj still not null? If I print the session object it display the ...
4
votes
2answers
63 views

automatically click anchor tag link on jsp page

I am having one tricky requirement. I am explaning through example abc.jsp calls xyj.jsp and xyj has a link like <a href="viewDetails.do">Click</a> My requirement is that when i run ...
0
votes
1answer
22 views

Populating select options from Beans in struts

I am Having Struts 1.2 bean as below which contains Locations in Array Register.java public class Register extends ActionForm { private String[] userLocation = {"Chennai", "Bangalore", ...
1
vote
1answer
53 views

Struts getting values from checkbox

I am having a struts app with a jsp page that populates check boxes from collection as below UserDetails.java public class UserDetails extends ActionForm { private Collection userSkills; ...
-1
votes
2answers
32 views

Generating Select Options using struts Logic taglib

Is it possible to display Select box with options filled with numbers as below in struts by using struts Logic taglib. <select> <option value="20">20</option> <option ...
0
votes
1answer
22 views

javax.servlet.jsp.JspException: No getter method for property

I am unable to find out what I am doing wrong. I am bound to use Form Bean within Form Bean as there are numerous different parts of the form. Basically, there is a response part as well as request ...
0
votes
1answer
31 views

struts generating form elements from bean

I have a Struts 1.2 Bean and a Bean code as below in JSP Page checkBox.jsp <logic:iterate property="userList" id="userDet" name="userDetails"> <html:checkbox property="checked" ...
1
vote
2answers
48 views

Concurrent HTTP Session is returning wrong user

I am experiencing a quite weird problem. When two users are logging at the exact same time, one of them is detected as the other. locale = new Locale(getLocale(request).getLanguage(), ...
0
votes
2answers
45 views

How to send object throgh request between diffent application

I want to send Java (POJO class) Object to other applcation which is installed on diffent or same tomcat. I have tried with request.setAttribute("abc",javaObj) but getting null value while using ...
0
votes
1answer
42 views

Working with Checkbox in Struts

I am having a Registration page in struts 1.2.I am having five checkbox in JSP Page as below. Register.jsp <html:checkbox property="userSkills" value="Java" ...
0
votes
1answer
34 views

Struts Error Message not getting Displayed in UI

I am using Struts 1.2 for my application. I have a validate method for my form where I am doing some validation for the inputs provided by the user. Below is the code for the userName provided by the ...
0
votes
0answers
36 views

Struts 1.2 Displaying HaspMap key value pairs in JSP Page

I am having a Struts 1.2 page with Java Class and HashMap as Below public class SelectBox extends Action { public ActionForward execute(ActionMapping mapping, ActionForm form, ...
0
votes
2answers
50 views

NullPointer Exception in Struts application

I want to create a struts app which displays index.jsp file which contains link to the search.jsp file.Directory structure of Struts 1.2 app is as below Struts 1.2 Directory Listing The content ...
1
vote
1answer
35 views

Date picker in Struts 1.x using javascript

I'm new to Struts 1.x. could any one explain me how to use JavaScript Date-picker in struts tags. example i would like to add date of birth using datepicker. it should take value which we selected in ...
0
votes
2answers
23 views

Run background after submitting a Form in Struts 1.x

Iam looking out for a solution to below problem: In Strust1.x, after submitting a form , i need to send mail to group which contains around 200 people, in this my page should be redirect to ...
0
votes
1answer
57 views

Struts 1.2 Displaying Message in JSP

I am Creating a Struts 1.2 Application.The Folder Structure is as given Below Struts App Folder Structure In the web.xml I coded in such a way that it load config from struts-config.xml ...
0
votes
1answer
44 views

Basic Struts1.2 Application which forwards to JSP page

I am Having a Struts 1.2 Application with following web.xml and struts-config.xml web.xml <servlet> <servlet-name>action</servlet-name> <servlet-class> ...
-1
votes
1answer
21 views

struct1 : Error at server shut down & start up org.apache.struts.upload.CommonsMultipartRequestHandler$CommonsFormFile

Iam on a strut 1 application! My application show error when ever its Shut down & start up. I find two different but related error at both shut & start of my server. The shut down error ...
0
votes
1answer
38 views

strut 1 : Actionforward to forward back to calling view with same ActionForm

I have application in struts 1. In this I have mailing form (to , from , subject , body etc) after user filling up the form . calls the action (press send button ) which will get the data from Form ...
0
votes
0answers
13 views

Bind pure html controls to struts 1 form

I have in my form a list of objects with the structure: Class Customer { int customerId; String name; .......... Is it possible to bind this form list to my jsp inputs. I know that a control is ...
0
votes
1answer
27 views

Difference between jsp expression tags <% and <%=

I more or less know the difference between <%! and <%, but I can't seem to find the difference between <%= and <%. I'm trying to avoid a null value error by introducing some logic into ...
-1
votes
1answer
43 views

Can we use struts 1.x formbean to connect database and perform some initial validations

Can I use struts form beans to do database validation like if email exists in database or not, as a form bean is front end component? Is that one way of doing validation?
0
votes
1answer
33 views

Default option value through JavaScript

When I click on a text box field, I call a JavaScript function which will default the option value in a select (fatcaSearchDO.bankId). This is not working when I call javaCall(). The value Option3 ...
0
votes
1answer
28 views

Struts bean cannot be found

I'm having a problem with Struts. It's not recognizing a bean, even though it's defined one line above I have this code <logic:iterate id="com" name="Handler" property="commandList"> 23: ...
0
votes
2answers
98 views

Struts 1 form validation

I'm using struts 1 in legacy project. I want to validate form. I have read good article about that. But I don't understand what struts do if form's validate method returns non-empty ActionErrors. I ...
2
votes
2answers
129 views

struts 1.3 tiles with Display Tag

Let me explain the problem in very simple manner, In my app, I've a JSP which contains 2 tiles. Tile 1 is a jsp containing Search Form. Suppose it has only one search parameter that is set into ...
-1
votes
0answers
127 views

How to get the values entered in the table in action class using iteratior in jsp in struts 2?

I have a table with an add row and delete row functionality. In each row I need to fill in some values before submitting it. I want this table to be inside an iterator so that I can retrieve the ...
-1
votes
1answer
60 views

In a Struts Action, can I write out a byte array as well as redirect the page? (Struts 1, Java)

I'm working on a project in which, after the user submits a form, I'd like to have them download a PDF file (filled out with information from the form) as well as redirect them to another page. I know ...
2
votes
1answer
449 views

How to get values of the rows of a table that are filled in the jsp in the Action class in Struts 2?

I have the following jsp in which I have an option of adding and deleting rows of the table and in each row of the table which have the same fields I have to fill in the options and submit the form. ...
0
votes
0answers
63 views

Jquery UI Dialog with Struts Navigation Action

I am using Struts 1.3 and JQuery v 1.7.2 , JQuery UI 1.10 in My Web Project. currently , i have created NavigationAction class which extends struts Dispatch Action class and all requests of the ...
0
votes
1answer
28 views

filter-name element is missing in generated web.xml

One of our old applications uses Struts-1.2 and EJB-2, generated with xdoclet 1.2.3. Maven 1 is used to build the application using java 1.4. The application has been running in weblogic 8.1 without ...
1
vote
1answer
76 views

How to display data in struts form if object has another object

I'm working on struts 1.3 framework application. I have one object which I'm setting in request attribute. request.setAttribute("school",school); And I'm trying to display that object through ...
0
votes
1answer
38 views

Module 'null' not found in Tomcat

I have created a web application using Struts 1.3. I am using Apache Tomcat to run the application. It's running fine in local. I have deployed the WAR file in Tomcat6 in server machine. When i try to ...
0
votes
0answers
93 views

Include several page in 1 form jsp, struts

right now i want to create a page that include another pages of jsp. I have to display data from multiple table, therefor i want to separate each data per table in different page. Let say i have ...
-1
votes
1answer
67 views

Submitting objects and lists struts1

I have a class MyClass as below public class MyClass { private int fieldOne; //with getter, setter private String fieldTwo; //with getter, setter } I have following two fields ...
1
vote
1answer
67 views

java.lang.NoClassDefFoundError: org/apache/struts/taglib/html/FormTag

I have a Java EE application that uses Struts. It mostly works correctly, but suddenly I'm getting an exception. I have the Struts jar file in WEB-INF/lib and earlier the application was running ...
0
votes
0answers
76 views

Setting a value to a bean varialbe in Struts 1.2

I am using Struts 1.2 for my application. I have declared a variable using the Struts taglib like this: <bean:define id="stringVar" type="java.lang.String" value="someValue" /> Now I want to ...
0
votes
0answers
132 views

Popup in Struts

I have a parent page with a button, 'popup', which opens a popup window which contains the form (input fields), and the child window contains a button, 'Save'. On clicking Save, it closes the child ...
0
votes
1answer
93 views

Using break; in Struts1 <logic:iterate>

I am using Struts 1.2 for my Web Application. I am iterating through a garments collection and searching whether any of the garments price is greater than $1000 or not. If any of them satisfies the ...
1
vote
1answer
233 views

how to remove the combo box value from database in jsp page that uses struts and hibernate?

Hi I have four combo box as same if one option is selected atonce it should not be appeared in other combo boxes ie: no repeated value should not be selected by user? the problem is the values are ...
0
votes
0answers
91 views

Struts-Layout datagrid framework:Exception creating bean of class

I want to display an empty dataGrid with a button to add new item.I use this code the actionForm: public ActionForward display(ActionMapping in_mapping, ActionForm in_form, HttpServletRequest ...
0
votes
1answer
222 views

open popup and save information in the parent page with struts

i am new in struts developing a Java EE application in struts 1.3 i have a requirement that i had a parent page with button 'popup' which opens a popup window which contains the form(input fields) . ...

1 2 3 4 5 10