Tagged Questions
0
votes
1answer
88 views
Restrict a user to go to back pages from the browser back button after log out in struts 2 login web application?
I am making a struts 2 web app in which after log out one can go to back pages from the browsers back button which i don't want in my app.I also using a custom interceptor before every request to ...
0
votes
1answer
349 views
How to dynamically assign value to struts2 textfield from Map
I am trying to dynamically assign value to struts2 textfield for that what i am doing id user Administrator is asked with a userId when he enters that Id that id is checked in DB if that id exists and ...
2
votes
2answers
67 views
session being remembered by browser
I am developing a struts2 web application. When button click occurs, I would make a $getJSON call to a struts action and perform some operation on the java class.
...
0
votes
0answers
187 views
When using execandwait interceptor in In struts2 the session is locked during the initial delay
I have a Struts2 application that has a few actions that take some time to load (because of heavy db calls). In order to display a wait page I'm using the execAndWait interceptor. The setup of the ...
0
votes
2answers
1k views
Struts2 handle session timeout using Interceptor
I am trying to handle session timeout requests in my struts2 application using an Interceptor. Below are the files related to this:
Web.xml:
<filter-mapping>
...
0
votes
0answers
268 views
Tomcat session-timeout response?
I have app works on tomcat. App is build in Struts2.
When session not contain user object ( session expired, user logout etc. ) I have interceptor which redirect user to the loginPage.
This works ...
1
vote
1answer
199 views
Struts 2 session access issue in my jsp page
I have a JSP page where i want to display some information from my session like this way
<div>Fonction : <s:property value="%{#session.employe.emploi.nomEmploi}"/>
but the problem ...
0
votes
1answer
204 views
Maintain user details in session using struts2
I have a struts2 application. In my application i maintain a session using
Map session = ActionContext.getContext().getSession();
session.put("login","true");
session.put("username",getUname1());
...
0
votes
4answers
270 views
code works fine on localhost but not on remote server
i have experience in android, but not familiar with hibernate and advance java. But i have to fix this issue.Please suggest.
the problem is that,
Below code works fine on my tomcat local host ...
0
votes
0answers
98 views
Struts2 issue with session cookies
I have a struts2 application that first presents a login-page (custom made). I see in Firebug that a session cookie is set when the page is returned to the browser.
Upon login, I get a 404 resource ...
1
vote
1answer
135 views
Main list of all the user logged-in in a struts application
In my struts2 application, in the login action I am placing the user and role in the session.
I want to keep track of all the users who logged in so as to do stuff like following :
Avoid multiple ...
2
votes
0answers
201 views
session sharing on multiple domain but same ip address in tomcat
I have two domains one is example.com and the second in mydomain.com both domain is hosted in same ip address. I have a feature like add to cart in the website and it is stored in session. When i ...
0
votes
1answer
406 views
How to use existing session using Struts2 SessionAware
Our Action class implements SessionAware, on page load for the first time, we are setting some data into the session (session map which we get by implementing SessionAware). we have a functionality ...
0
votes
1answer
107 views
Dispose session objects
Is it possible to dispose of objects that are stored in the session in struts2?
Some of the objects I would like to store in the session have resources that need to be released, but I can't find a ...
0
votes
1answer
266 views
Struts2 Hibernate PLugin
I'm looking for a hibernate plugin that work well with struts2 where can query data using hibernate (JPA) and display it in jsp without violate situation such as hibernate session closed.
I'm using ...
0
votes
0answers
192 views
Submitting Jquery wizard Form ?
I am using Jquery for UI and Struts2 in the Back End .I got a requirement such that i have to make a JQuery Wizard and have to submit the form to database ..
The problem is , am going to insert ...
4
votes
1answer
234 views
How to access a session ArrayList by index in a form?
I have a session variable which is of type ArrayList.
In the jsp page I need to access it by index to create a form dynamically, but after I submit the form I found out that the session ArrayList's ...
0
votes
1answer
1k views
struts2 SessionAware & ServletRequestAware
Im new to java programming and im trying to develop a web app with struts2+jsp+jquery with manual jdbc connection to plsql with jndi implementation method.
Im trying to understand how to implement ...
0
votes
0answers
99 views
Tomcat Session data getting mixed
We are running Tomcat behind IIS7 on Windows 2008 RC2 Server.
We are storing some variables for users in session, sometimes session data for one user is picked up for another user who are not using ...
0
votes
0answers
288 views
Struts2 struts 1 session flow
I want to know, how it is possible to be in a Struts1-Session and switching to a Struts2-Session through a JSP? Does the transfer already exist?
Thanks for answers.
Edit:
I'm thinking about the best ...
0
votes
1answer
414 views
“Session is closed” error (struts2+hibernate)
I'm truly disturbed by the Session Closed error, while sending queries to my database ( struts2 + hibernate ).
Struts Problem Report
Struts has detected an unhandled exception:
Messages: Session is ...
0
votes
3answers
414 views
Reload the page on hitting back button
I am using Struts2 for my project.
Working on simple registration project. When user Login , he is directed to his profile, but on hitting browser's back button login page appears again.
XML:
...
0
votes
2answers
132 views
How to remove session if server is stoped
I developed the webapplication with Struts2.after logging to the my application copy the url and paste to the same browser with different tab then its going to directly without restrict.in that ...
0
votes
1answer
194 views
Struts2 + Hibernate : No target setted for Hibernate Session object
I use Struts2 + Hibernate. I get in my console this error : No target setted for Hibernate Session object at /test - Method: xxxa.action.TestAction.testFunc(). Use the hibernatePlugin.sessionTarget ...
0
votes
0answers
160 views
Two JSESSIONIDs from the same page (Java, Servlet, Jersey, Ajax jQuery)
I'm developing a three layer application with web services exposing underlaying business methods. Web services are implemented with Jersey in RESTful style and the layer is protected by a filter which ...
1
vote
2answers
863 views
Struts2 change locale
I'm wondering if it's possible to change the locale into an action, and not by an url parameter...
In fact I have an authentication action, and regarding the user which was authenticated I want to ...
0
votes
1answer
1k views
request.getSession() creating new session after sendRedirect()
We are developing travel application. Through this flight, Hotel, Bus tickets will be booked. It is product based application. Nearly we have 25 clients(3 clients are using, for remaining still ...
0
votes
1answer
111 views
Online Users in an AppEngine Website
Users can use their Google, Facebook or Twitter account to login to a site running in Google App Engine. User's session was already implemented and the three authentication providers (Google, ...
4
votes
1answer
484 views
Session in Struts 2
Is this the correct way of storing a value in session in Struts2?
Map<String, Object> session = ActionContext.getContext().getSession();
session.put("user", "USERNAME");
1
vote
1answer
2k views
Storing object in session - struts2
Hi I have something like this in struts.xml
<action name="LoginAction" class="controller.LoginAction">
<result name="error">/Error.jsp</result>
...
2
votes
5answers
3k views
Allow only one session per user
We have a web-application developed using struts2, spring & hibernate.
The application needs a functionality that one user can login from only one browser.
Say if user x, is logged in on pc-1 ...
0
votes
2answers
765 views
create different session for different tabs in same window
How to create different session for different tabs in same window?
I am trying but it is always using same session throughout different window in Struts2 app?
I have changed cookies two but session ...
0
votes
1answer
502 views
create your own session id in struts2 or j2ee app
I have an app using Struts2 jsp and java..sessionid is created by container.I want to create my own session id and set to that particular session...just want to overwrite.I have aslo created a filter. ...
0
votes
1answer
562 views
logging out old session and and continuing in new session with same user ID and Password in Java Web Apps
Suppose a person is logged in with user id and password in an app. Now with same user id and password he is trying to log without logging out from first session. I want to make it that it willlog out ...
3
votes
1answer
520 views
In Struts2 Interceptors getting exception on an instance variable that is properly get/set in the interceptor
This issues comes up when executing a particular workflow -
User is logged in
Session expires
User tries to do something on the currently page which triggers an AJAX request
Since session is ...
1
vote
2answers
1k views
hibernate session close
I just followed a simple hibernate struts tutorial and succesfully made db calls through hibernate. However I don't see the code closing the hibernate connection anywhere.
...
0
votes
2answers
277 views
Java Application Scope
During a particular session if I obtain application context and store or change something in application scope, would it become available to all the sessions until the server is rebooted?
0
votes
0answers
294 views
Disable URL-encoded Session Identifiers in Struts 2
I'm using a filter from http://randomcoder.org/maven/site/randomcoder-website/cobertura/org.randomcoder.security.DisableUrlSessionFilter.html
The content of web.xml:
<?xml version="1.0" ...
0
votes
0answers
88 views
Struts 2 MessageStoreInterceptor randomly unshown
Here is my problem, I'll try to do short...
When I submit a form on my app, a validate method is called and, when there's an error, this one is randomly not displayed on the screen.
It is really ...
0
votes
2answers
2k views
Set A Variable in Session When The Submit Button is clicked in Struts
I have a iterator which goes through a list and create their name and for each of them a button. I want when the user click the button put the same name that has been clicked in the session
This is my ...
1
vote
1answer
703 views
Spring3 “session” scope and IllegalStateException even already defined proxy and RequestCntextListerner
I've got this error when deploying in Websphere 7. but it's working fine in Tomcat 7. It's such a strange behavior.
Unable to instantiate Action, ...: Scope 'session' is not active for the current ...
0
votes
1answer
428 views
Struts 2 session values not reflecting in JSP in load balanced environment / domain URL
I have a struts 2 application, where I have a link and on clicking on that link, it executes a method inside an action class and redirect the user to another action class which eventually forwards to ...
0
votes
2answers
5k views
Struts 2 session attribute not displaying in jsp
I have an action class for a Login page where I am setting a session attribute thus:
ActionContext context = ActionContext.getContext();
context.getSession().put(username, getUsername());
I am able ...
1
vote
2answers
3k views
Struts 2 session management and dynamically displaying jsps
I am writing an app using Struts 2 framework. It has a login page with username, password and usertype (ex. Administrator, supervisor, analyst etc.)
I want to do two things:
Session management - ...
2
votes
1answer
2k views
Save Session Objects in Cookies with Struts2
Is there an easy way to store my session objects in cookies instead in memory with Struts2?
Thanks
0
votes
1answer
801 views
How to track user session in struts 2
I am using struts 2 with mysql. Using jsp for presentation.In my application i have three users , admin,tester,BA .For example if a admin user logged in then i will show him the adminindex.jsp page, i ...
2
votes
2answers
782 views
Best and recommended approach to get session in struts2?
There are many ways to get session object in struts2. Which one is best and recommended approach to get session object from the following?.
ActionContext
SessionAware
Getting Request from ...
0
votes
1answer
1k views
Struts2 locale session rewrite
Can I rewrite the session attribute WW_TRANS_I18N_LOCALE in Struts2? I want to set locale in cookies, for future use, because by default session have a timeout of 30 minutes, this is to small amount ...
1
vote
1answer
921 views
struts2 session expired application scope
my app uses struts2+spring+hibernate and I was doing some session-interceptor-login-authorisation system and its working alright, now that I try to implement the session expired part I'm running into ...
4
votes
4answers
11k views
Sessions in struts2 application
I have created a web application in which I need to maintain the session
if a user session is there, and then and only then will it allow the user to see the jsp.
I have worked with jsp servlets ...
