Tagged Questions
0
votes
1answer
47 views
Changing system properties in Apache Tomcat 7
I have found lots of links saying that if I want to change the name of my session cookie all I have to do is modify the following system properties.
org.apache.catalina.SESSION_COOKIE_NAME
...
0
votes
2answers
25 views
1
vote
2answers
389 views
Forcing Tomcat to use secure JSESSIONID cookie over http
Is there a way to configure Tomcat 7 to create JSESSIONID cookie with a secure flag in all occasions?
Usual configuration results in Tomact flagging session cookie with secure flag only if ...
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
118 views
How to change the session cookie in tomcat?
When the user does a logout (or login, for that matter) I'd like to ensure that the value of the users session cookie is changed. How can I do that? If I just do session.invalidate() tomcat does not ...
0
votes
1answer
147 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
250 views
Tomcat HttpSession Cookie Shared
I have several separate instances of the same web application running on different servers (all have different public facing IPs). I make use of sessions to store currently logged in user's ...
1
vote
0answers
71 views
Setting different cookies for different users under embedded Tomcat
We have a project which contains an embedded Tomcat. This project is run under different environments (development and qs). So we have 2 instances of our project running with different configuration ...
0
votes
0answers
13 views
Set cookie-name in tomcat [duplicate]
Possible Duplicate:
Changing cookie JSESSIONID name
I am using tomcat 6.x version. I wanted to change the JSESSIONID name in our application something like below. I am doing this to avoid ...
1
vote
1answer
127 views
J-session id is changed when navigated from one https page to other https page on tomcat 6.0.24
our product customers are trying to have direct login to one of our secured pages.
login url="https://" + anIp + ":5443/om";
GetMethod authget = new GetMethod(url);
..
Header cookie = ...
0
votes
1answer
179 views
How to close the session sharing under tomcat7?
I have two host in tomcat:
<Host name="host1.domain.com" .../>
<Host name="host2.domain.com" .../>
I found that when i login host1,which will save a "USER_ID" in session,host2 could ...
2
votes
1answer
399 views
How to get the same session across subdomains in grails
I have a single app handling multiple subdomains such as
sub1.domain.com
sub2.domain.com
www.domain.com
domain.com
The user can switch across these subdomains when using the app. When this happens ...
0
votes
1answer
876 views
Is it possible to change the JSESSIONID cookie path?
i'm trying to change the path of the session cookie path in Tomcat. This cookie is set into the response automatically after i call request.getSession(true). The problem is i tried to add/change the ...
0
votes
1answer
82 views
Can Tomcat give me different cookies for different paths?
Some of the stuff i googled is pretty confusing. Basically what i want is:
a cookie for /something
another cookie for /someotherthing, and so on...
without having multiple webapps...
Does anyone ...
0
votes
0answers
116 views
Session between tabs - apache loadbalancer
I have apache load balancer (header, cookie) and two apache tomcat
backend servers. It is possible to setup apache to handle session
between browser tabs?
in this moment I can log in to my backend ...
1
vote
0answers
165 views
Method of binding socket.io sessions
I have an existing Tomcat application which has an existing authentication and session management and I am currently building a NodeJS server to handle real time communication with users via web ...
0
votes
1answer
1k views
php cURL log into jsp website and return HTML
I'm trying to use cURL to log into a jsp/tomcat website (we'll call it https://unknown.com for privacy reasons) and return the HTML from a page. I've observed the Net panel in firebug and the cookie ...
0
votes
1answer
820 views
Tomcat 7 - Firefox works but IE doesn't, cookie issue
I'm trying to solve a problem with Tomcat 7 + IE 9, the following URL request doesn't receive a cookie and I think it's due to the URL and how Tomcat handles it:
...
0
votes
1answer
1k views
HttpConnection mantaining Session
I'm consuming some web services done in java using a Rest architecture, my client it's a mobile application that uses HttpConnection to retrieve the data. In order to control authentication and ...
10
votes
3answers
5k views
how to refresh JSESSIONID cookie after login
A product I work on got a tough security audit by a potential customer and they are upset that Tomcat sets a JSESSIONID cookie before authentication has happened. That is, Tomcat sets this cookie ...
1
vote
1answer
691 views
Session cookie with httpOnly flag
I would like to configure my grails project in such a way that the session cookie is set with the httpOnly flag.
As I do understand, this is a configuration in the web.xml or context.xml file. But ...
4
votes
1answer
1k views
Session management with Tomcat and cookies
I am having a difficult time conceptualizing how Tomcat handles cookies and session management behind the scenes.
When or where does Tomcat issue cookies to manage an HttpSession? According to This ...
0
votes
1answer
1k views
how to force new session cookie / sessionId when switching from http to https (in Tomcat)
my question upfront is:
When changing from http to https: How do I enforce on Tomcat that the value of the JSESSIONID / (i.e. the session cookie) gets changed?
Here's my situation:
I assume we are ...
1
vote
2answers
699 views
GWT + Tomcat Session without Cookies!
I'm working on a web-project which uses GWT on client and Java on server side (tomcat7).
If cookies are enabled on the browser, everything works fine. I can use sessions without any problems.
If ...
0
votes
0answers
157 views
gwt cookies not working on tomcat
So when I run my application in dev mode, the cookies work fine and I'm able to login, but when I deploy to Tomcat it doesn't work.
The scenario is I have 2 GWT applications, one that authenticates ...