0
votes
0answers
5 views

How to change broadcasted ip in tomcat cluster

I set up a tomcat 7 cluster by including the -part in the server.xml. In the Docs ( http://tomcat.apache.org/tomcat-7.0-doc/cluster-howto.html ) it says: The IP broadcasted is ...
0
votes
0answers
4 views

how can I Cross-domain sharing session on Tomcat6.0.20

first, i had look for answers on web, I got a answers that add these segment in context.xml <Context sessionCookieDomain=".example.com" sessionCookiePath="/"> but unfortunately, it isn't ...
0
votes
1answer
23 views

Automatically re-login after session expires

When a Tomcat session expires, I'd like to identify who was previously logged in, and process a login automatically without displaying the login page. This is what I'm thinking: During a login, ...
2
votes
4answers
79 views

Can I expire all sessions of a user?

Can I expire all sessions of a user? I know that I can expire a session by using session.invalidate(). I am using Tomcat, servlet/JSP. In a session I have a attribute userId. On that basis we ...
0
votes
0answers
9 views

Tomcat6 manager app: View objects in session

When viewing the Tomcat6 manager app I am able to view all the active sessions for a selected application which is great. The problem I am having is that if the value for a given session attribute is ...
0
votes
0answers
14 views

ASP.net TomCat Internet Explorer empty session

I have a problem with Session in an asp.net web site. We have a Tomcat web site, and a page of it contains an iframe, that is linked to the asp.net web site, published on IIS. The access of the IIS ...
2
votes
1answer
64 views

Java web development: Sessions are not saved between requests and a new JSESSIONID is created

I have a problem that I have been scouring the internet for the past few days. I have found people with similar problems but whos solutions didn't advance my state. What is most irritating is that I ...
0
votes
2answers
44 views

Tomcat login redirect NullPointerException in FormAuthenticator

I'm really having a difficult time with a web app that I'm deploying to my company's tomcat server. I can deploy it to my own test server and access just fine, but when I deploy it to the test server ...
0
votes
0answers
45 views

Tomcat: is there a way to prevent JSPs from creating a session other than using a page directive?

I'm building a Spring MVC/Tiles/JSP application. I don't want sessions to be created - my code is good to go, but the JSPs create a session. So, I either end up putting a page directive in each JSP ...
1
vote
0answers
37 views

Simple method of session migration between parallel tomcat webapps?

I have one webapp on one Tomcat 7 (7.0.28) server. I would like to use the built in parallel deployment feature of Tomcat (FOO##001.war, FOO##002.war, etc) but I can't have users stay on the old ...
6
votes
2answers
204 views

Tomcat/spring session management for anonymous user

I have next use case: We have webstore where user can select some goods and then buy them. He can add goods to his cart before login to application. All of this items must be stored in his session. ...
1
vote
1answer
101 views

set custom session id java (apache tomcat)

I want to set custom session id for my web application ,I have alogorithm to generate session id my web application should use that algo for generating session id. please suggest me how cam i set my ...
0
votes
1answer
36 views

Tomcat default session handling

I am currently facing an issue and would like to know if i am going in the right direction. I have a single servlet that is hit by the users. Currently i do not have any session handling code.. When ...
0
votes
0answers
36 views

Session invalidated page is not rendered with TagAttributeException

Trying to correctly handle session expiring. I set the timeout to 1 minutos in web.xml. I login using forms-auth, do some work and idle for couple of minutes. The session expires at 1 minutes and is ...
1
vote
0answers
64 views

How to GET session in function createWebSocketInbound () when programming websocket using Tomcat

As is known, function createWebSocketInbound( String subprotocol, HttpServletRequest request) has 2 parameters. But when i use this function, i cannot get session with user information which i put ...
0
votes
2answers
65 views

Java Web Service creates large number of Tomcat sessions

I have Java Web Service running in Tomcat on Linux. The JWS will continue to create new sessions for each call. I would like to remove / kill the sessions once the user has completed the WebService ...
1
vote
1answer
43 views

GWT on Tomcat 7 shows a single session

I have deployed my first GWT application to the Tomcat 7 standalone server (not in Apache). In the application, I am storing some information in the session using ...
0
votes
0answers
13 views

is there any way to track the active sessions in tomcat web application?

is there any way to track the active sessions in tomcat web application ? As per my project need i want to track active sessions in tomcat web application. if any one aware of this requirement plz ...
0
votes
1answer
157 views

getAttribute of session object returns non-null object instead of null object in a JSP page in Tomcat environment

I am having a problem with getAttribute() of session object of JSP in Tomcat environment. When Connect button is clicked from an initial jsp page, login.jsp , a connect.jsp page (connection page) is ...
0
votes
1answer
54 views

Session data lost between two web directories

Yet I haven't seen solution for this in JSP. So, I have GWT application and JSP welcome and login pages. Thera are two web archives. welcome.war app.war The Tomcat has two directories: ...
1
vote
3answers
123 views

Request and session in Servlet

I have very simple question with request and session in web. When I requested a same page page for multiple time from same browser with different tabs or through new window, session ID and session ...
0
votes
1answer
109 views

Http session persistence on tcp disconnect

Concerning an HTTP session: It is either implemented via cookies or URL rewriting. Since the HTTP 1.1 uses persistent connections, I assume that a session is invalidated when a TCP connection ...
0
votes
1answer
223 views

Tomcat Session Replication

I am trying to develope an application with tomcat running in several computers of same LAN trying representing several nodes and each of them runs an application with a single shared session(Ex. ...
2
votes
2answers
1k views

Apache Tomcat 7 Changing JSESSIONID on Every Request

This issue is driving me insane, so maybe someone could help me understand what the issue is. I have a tomcat web application being fronted by HAProxy. HAProxy is also doing SSL offloading, and is ...
0
votes
0answers
271 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 ...
0
votes
1answer
261 views

Tomcat doesn't invalidates session after calling session.invalidate()

I have a webservice in jaxws to which I can connect after login. Everything works perfectly, I pass login and password and I'm logged in, and I'm creating session for this user on WS server. After all ...
0
votes
0answers
80 views

Spring session and terracotta

I am trying to create a session replication with tomcat and spring over terracotta. I put the Valve in the context.xml as instructed and when a request comes through i can see that it contains a ...
2
votes
1answer
121 views

The persisted data in hibernate session becomes stale and sometimes duplicate ID gets generated by hibernate

I am using hibernate for my application. Sometimes hibernate generates duplicate ID and the strategy i have used is increment which does max(ID) from table and adds one. I have no clue why it happens ...
0
votes
1answer
361 views

How to intercept page request with servlet filter before server sends response, appending jsessionid to response URL

I have a servlet filter which takes the jsessionid and attaches it to the response. However, it's not working correctly because the application gets stuck in an endless loop. The code looks correct, ...
0
votes
1answer
115 views

reason of the error message “…cannot be resolved…”

I start learning jsp application, and sometimes i got the error message "something cannot be resolved...". For example, this is my last report: An error occurred at line: 118 in the jsp file: ...
0
votes
1answer
78 views

Avoiding HTTP session with legacy code in tomcat/servlet

I'm told to use some 3rd party software that consists of a servlet and a taglib. The servlet generates search results and the taglib renders results and other interaction elements according to the ...
1
vote
2answers
111 views

How to pass the roles of a http session to a websocket?

In my situation (tomcat) I use tomcat-users.xml to manage the link between users and roles <tomcat-users> <role rolename="role1"/> <role rolename="role2"/> <user ...
3
votes
0answers
417 views

Apache ProxyPassReverseCookiePath does not work on second application instance

I have two equal web app instances in Tomcat which are made available by Apache's Reverse Proxy. The first one works just fine but the second one has a problem with getting data from the session (null ...
0
votes
1answer
82 views

Java (Tomcat) equivalent for HttpApplication in ASP.NET

I'm looking for Java (Tomcat) equivalent for HttpApplication in ASP.NET. My business requires to store some temporary data globally at runtime. I would like to do it in HttpApplication if I'm using ...
0
votes
1answer
39 views

Controlling concurrent logins to an application

I want to control number of users that can be login into my application at a time. For example I want to allow only 10 users to use my application at a time. If 11'th user tries to login to use my ...
0
votes
1answer
145 views

Single page app, no cookies, tomcat session management

Here's the scenario: Single page app (AJAX-based), in an environment that disallows cookies, but still requires sessions, and Tomcat (or JBoss) in the back-end. What's the best and easiest way to ...
0
votes
1answer
220 views

Tomcat Manager Application - Too many sessions

When I check my Tomcat Application Manager, I see that I have too many sessions (over 4600): Why is that so ? Can this be linked to a deployed application or is it the fact that it has been up for ...
0
votes
4answers
271 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
269 views

Sharing session by setting JSESSIONID cookie for multiple domains

I have web application part of which is accessible from www.domainA.com, another part is acessible from www.domainB.com. When I enter my App through domainA.com and than I navigate to domainB.com old ...
3
votes
1answer
178 views

Session lost while switching from one context to another in tomcat

I have a tomcat server on which I have deployed 10 web applications. I have a Filter which reads an incoming request from one application (say "A"), reads a certain cookie value, and gets another ...
0
votes
2answers
73 views

Unlimited session object cause RAM be full

I am learning about the Java EE HttpSession (in Tomcat). It says that when we close the browser, the cookie JSessionID=12345 will be destroyed (but on the server side, a session object still retain ...
0
votes
1answer
146 views

Tomcat / Java EE: Sessions cease unexpectedly

We are experiencing issues with sudden logouts. It came with a version switch, previous application ran JSF 1.2 while this one runs JSF 2.1. Since this was a major refactoring any specific code ...
2
votes
1answer
349 views

How to retain session after browser close?

In Java EE HttpSession, when I set the session timeout to negative (by using setMaxInactiveInterval), supposedly, I thought it should be retained even after the browser is closed. But according to ...
1
vote
2answers
186 views

Closing an HTTP Session for Writing in Java / Tomcat

When working on an ASP.NET application, I discovered that placing something in the session cache, or really, accessing variables in the session cache, caused my Ajax queries to stop being ...
2
votes
1answer
292 views

Session Replication between tomcat nodes

The tomcat doc of apache says, there are three ways, wecan achieve session replication among tomcat nodes - Using session persistence, and saving the session to a shared file system ...
0
votes
1answer
150 views

Possibly corrupted java.util.Locale causes NullPointerException

It all started when I got a NullpointerException in my JSP file. The line causing it only had a Struts 1.3 tag: <html:html> The root cause from the stack trace was this: ...
2
votes
0answers
203 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 ...
1
vote
1answer
168 views

Manage sessions in multiple server environment

Suppose I have more than one web application servers running and I am logging in a User from Server1 thus his session starts.As http is stateless, suppose if the next request goes to Server3 than the ...
2
votes
0answers
130 views

Reconnecting a client request with Tomcat Session

I have client requests that are initiated through a Load balancer and routed to the least weighted Tomcat server to process. When the client hits a target Tomcat server, the response to the client ...
1
vote
2answers
168 views

Thread reuse in Tomcat

Tomcat uses a thread pool and reuses threads I was wondering does it reuse threads across sessions or across requests?

1 2 3 4