0
votes
0answers
44 views
logic:iterate in struts 1.3.6 (netbeans 6.7.1)
Today I noticed something strange.
I have an action:
public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response)
throws …
0
votes
2answers
99 views
I’ve written a java getting-started tutorial, where would be a good site to post it for checking?
Hi all,
For our company's internal training, I'm writing a java getting-started tutorial. This will go all the way from installing eclipse through to writing a working demo application with Struts, …
1
vote
1answer
39 views
Struts 1.2.9 Action Chaining
I'm having trouble calling a method in one Struts action from a method in another Struts Action (I've been told that this is possible).
I'm working with two Struts DynaValidatorForms - one is used to …
0
votes
2answers
49 views
XSS security issue
When using Cross Site Scripting - XSS in a J2EE struts 2.0.9 application . When I put <Script> tag in the URL it is executing the JavaScript which is a security threat. Is there any solution to …
0
votes
2answers
91 views
struts2 application on jboss
This is a bit of a continuation of http://stackoverflow.com/questions/1777339/deploy-struts-app-on-jboss, but it's different enough that I felt it warranted a new question.
In the other question, I …
2
votes
3answers
82 views
Struts Tiles 1 - nested tiles problem
I am using Struts tiles 1 succesfully, however I have come across a problem when trying to nest tiles.
I currently have a layout like so:
I wish to have another template like this, for use in …
0
votes
1answer
47 views
In Struts2, how do you share your common html across all pages?
In Struts2, how do you share your common html across all pages?
In Asp.net, you've got Master pages, and in Rails there are Layouts. The idea is that your common html (eg the header, menu, and …
0
votes
1answer
65 views
deploy struts app on jboss
I'm working through some struts tutorials, and here's one of the ones I'm using:
http://www.vaannila.com/struts/struts-example/struts-login-page-example-1.html
I downloaded the "source + lib" link at …
1
vote
3answers
76 views
Setting the default value in Struts2
Hi all,
I am setting the value(kind of default value) for a drop down select value from action class in a page(given below). When the page loads the value is beig displayed but the other elements of …
0
votes
1answer
35 views
Java Struts Report
I am writing an excel report using an action,controller, servlet struts framework. The report is very congested and has already around 10 separate queries. I need to add about 10 more queries due to a …
0
votes
1answer
22 views
Handle UTF-8 DataString ( Velocity/Struts )
Hey guys, lately, I use the combination of Struts and Velocity frameworks to create some website, the problem is that when I tried to input UTF-8 Japanese character, say, a field name, which I putted …
0
votes
1answer
28 views
Create PDF in Struts from data on screen
Hi,
I am able to create a simple pdf using iText api inside a struts action class.
The data that should be passed into the pdf is generated on screen based on user search parameters.
What I am …
0
votes
2answers
37 views
Web templating (struts tiles) - best solution to indicate current page?
I would like to indicate the currently chosen page in a shared menu component of a web page in a Struts Tiles project.
I can think of some possible solutions
check current URL
call some Javascript …
0
votes
1answer
15 views
Struts 2 data transfer and type conversions for primitive types.
Hi.
I'm using java beans with automatic data transfer and type conversion.
Ex:
public class MyAction
{
public String execute(){
// ....
}
private double price;
public getPrice(){
return …
0
votes
2answers
150 views
How to prevent JPA from rolling back transaction?
Methods invoked:
1. Struts Action
2. Service class method (annotated by @Transactional)
3. Xfire webservice call
Everything including struts (DelegatingActionProxy) and transactions is configured …
