0
votes
1answer
506 views

JSP+Struts: Handle session timeout in AJAX calls

I am making ajax calls from my JS methods to invoke the action class's methods in the following manner: $.getJSON("treeDemo_!getRootNode?appId=" + applicationId, function () { }).success(function ...
0
votes
3answers
204 views

Call a method after jobss started

Hi i am using struts 2 and want to call a method just after when server is up. as on server startup we can use FILTER DISPATCHER. i am using jax ws . and i am deploying my jax client and endpoint ...
1
vote
2answers
1k views

How to change charset in struts2 to utf-8

Hi I have testfield in which I want to put test not in English(for example into Russian) but in my action class I get instead of text only ?????????. I trying to write simple filter which described ...
1
vote
3answers
2k views

Filter with url-pattern /* not mapped to all jsp's

I am starting to learn struts 2. I have 3 pages, FirstLevel.jsp, SecondLevel.jsp, BadGuess.jsp. I want to apply filter in the three pages. LevelFilter.java package com.tutorialspoint.struts2; ...
0
votes
0answers
105 views

Redirecting a page with a Servlet

I have an application that is a mix of plain old servlets and Struts2. There is a search page which is used throughout the application, so I made it as a generic page. Several search pages just ...
0
votes
1answer
47 views

SessionInvalid issue

In my application i have written a session filter which is used to invalidate the session. now what is happening is when the user is idle for sometime it is going to Login page which is correct but ...
1
vote
1answer
897 views

Filter is used as controller in Struts2

In struts2 why Filter is used as a controller instead of Servlet? what is the advantage of filter over servlet?
0
votes
1answer
699 views

How to use servlets in struts2

i have a struts2 web app and I want to use a servlet in my project,but struts2's filter does not allow to call servlets I have looked into this solution, but unfortunately it didn't work out and the ...
5
votes
3answers
2k views

Difference between servlet/servlet-mapping and filter/filter-mapping?

As part of exploring/learning Struts2, JSP and Servlets, I see from here and there that servlets and servlets-mapping can be used in web.xml. However, Struts2 mentions filters and filter-mapping too ...
0
votes
3answers
104 views

Will it be a good practice to extend the Struts Framework's FilterDispatcher?

I am trying to use Hibernate with Struts. Will it be a good pratice if I extend the FilterDispacther for calling Hibernate Utility classes? Anyone have any views? I want to discuss the pros and cons ...
2
votes
2answers
1k views

Filters not working in Struts2

for some unknown reason I'm not being able to use filter on struts2. I'm using apache tomcat and using filter to restrict user access ( I preffer rather than Interceptors). Is there any reason why my ...
4
votes
1answer
6k views

Filter mapping for everthing to Struts2 besides one servlet?

I have a Struts2 (2.1.8.1) web application. My web.xml looks like, <filter> <filter-name>struts2</filter-name> ...
1
vote
3answers
2k views

Struts2 combine with domain specific servlet

I have struts2 web application. Right now I need embed with help of iframe some functionality from stand-alone servlet. But according to following rule, servlet is never get calling. ...