Session Cookies enable a server and a browser to establish an identified connection (though cookies) and communicate though it.
1
vote
1answer
338 views
JAX-WS client: maintain session/cookies across multiple services
I'm using Netbeans to automatically create webservice clients based off WSDL files. This works well, except the webservices I'm using require that I pass in a custom cookie in the HTTP header to every ...
-1
votes
1answer
76 views
PLAY_SESSION expiry not changable
The file application.conf contains the following lines
session.maxAge=7d
application.session.maxAge=7d
But the PLAY_SESSION cookie has an expiry time of about 16 minutes after creation.
How can ...
-1
votes
2answers
87 views
PHP, Sessions, Cookies - something is happening that doesn't allow some users to log in?
We have about 100 users accessing our website daily. A majority of them have no issues logging in. However, once a month we get a call or email ticket with complaints that users just see the login ...
1
vote
2answers
175 views
Cookie expiration is related with Session expiration time of server?
Am setting Cookie using below code,
document.cookie = name+"="+value+ ";expires="+"domain=xyz.com;path=/";
And session expiration time set in my server is 15mins. If client is idle for 15 mins,
...
0
votes
0answers
48 views
New session not finding already existing cookie
After login with two different users using same URL in window tabs, the second user is not finding the cookie created by first user and also overwriting the second session on first. I am using perl ...
3
votes
4answers
53 views
Get REQUEST_URI and don't overwrite
I tried storing the REQUEST_URI in a session with the code below. I need to store the very first REQUEST_URI when a visitor lands on a page on our site and not have it overwritten when they begin ...
9
votes
4answers
313 views
How does PHP parse raw cookies into $_COOKIE?
I have an issue with cross-domain AJAX requests.
Three servers are involved in this issue. We can call them A1, A2, and B.
A1 and A2 are running the same application code. They are two staging ...
1
vote
1answer
45 views
Is web storage preferable over cookies for storing sessionId?
Is it more secure to hold the sessionId at client side (to avoid logging in each time) using local storage or session storage rather than using cookies?
0
votes
0answers
32 views
cookiless domain doubles server load
i was not facing server load issue with my website content but it was coming slow and to speed up i used online tool to refine my website http://tools.pingdom.com but this website suggested to use ...
0
votes
0answers
57 views
Should a session cookie be signed if it is just an id
I have seen in a number of web frameworks the ability to sign a cookie with HMAC. I was wondering if there is any benefit of signing a session cookie which is just a randomly generated id and no other ...
0
votes
2answers
42 views
Website redirect based query with cookie
I have a website that used to be only a news page, but as we grown, I had to move the news section from homepage to domainname.com/news
To not confuse our loyal users when they landing on the new ...
1
vote
0answers
143 views
How to make use of jsessionid together with basic authentication
I am using JBoss 7.1 and have secured my web application with Basic authentication but I want only the first call to require the Basic authentication header, sequent calls should use the jsessionid ...
1
vote
1answer
44 views
Try to show text in different language
I have set a cookie named 'lang'. It will be assigned with a value by the current language while browsing. But how can I show a text in the current language?
0
votes
0answers
40 views
Renee/Rack: using cookie based sessions in the Renee franework
Can someone explain me, how cookie based sessions with Renee work?
It should be kind of similar to Sinatra or other Rack based frameworks.
There is a reference page for Sessions, but it does not ...
1
vote
3answers
212 views
how to delete particular cookie from cookies using jQuery
This is code which shows URL and delete image for delete cookie. add and display function is working but how to delete ??
function backLinks(){
var pathname = window.location;
var ...
0
votes
0answers
64 views
storing nokia maps geocode values as cookie
Can anyone here explain me how to store nokia-maps geocode values in rails session-cookies??
so that located position on map remains unchanged even if the user navigates to other pages and return, ...
1
vote
1answer
144 views
MVC4: Remove custom row on session end
I am creating an entry in a table for a users session which is mapped to a guid for cross domain access to an API. The row in the table looks like [guid, cookie] and is populated at login.
...
5
votes
1answer
307 views
Set “secure” flag on session cookie in RoR even over HTTP
In a Rails app, the session cookie can be easily set to include the secure cookie attribute, when sending over HTTPS to ensure that the cookie is not leaked over a non-HTTP connection.
However, if ...
0
votes
0answers
78 views
Authentication using Ajax with Django not working
I am trying to build an AJAX signup page over HTTP. (It is not HTTPS because I am not taking a password).
I have built the django view that accepts a POST request and returns back a JSON with a ...
0
votes
1answer
63 views
asp.net session cookies without the use af session
I am a little bit confused about the use of the ASP.NET_SessionId cookie!
When not using session state in my application I was of that knowledge that the cookie was
set on every response, just with ...
0
votes
3answers
61 views
Is it possible to use the value of a variable to define the name of another variable in a JavaScript string?
I'm trying to use the value of a variable as the name of another variable inside of a string.
I've searched, and seen similar questions asked, and the answer seems to be "learn how to use arrays, ...
0
votes
2answers
95 views
Login screen - should we use cookies
I have a login screen, and upon successful login i will display a welcome screen. But the problem is if i refresh the web page. i am taken back to the login screen. If i am successfully logged in, ...
0
votes
0answers
28 views
Remove the double quotes in sessionID
I have create a portal hosted on IIS. I am trying to access my applications (app1, app2) which are hosted on Apache Tomcat 7. These apps are shown in tabs in the portal.
I did this to achieve Single ...
2
votes
1answer
262 views
ExpressJS session expiring despite activity
Bringing this question to SO since the express group didn't have an answer.
I'm setting the session maxAge = 900000 and I see that the the expires property on the session cookie is set correctly.
...
1
vote
0answers
302 views
Apache 2.2.3 and Tomcat 6.0 : JSESSIONID being duplicated on different Sessions
We are running the following:
On Linux OS: Red Hat Enterprise Linux 5 - 64 bit
Apache Tomcat/6.0.20 - Serving Java EE Website
Apache/2.2.3 64 bit - Sitting in front of Tomcat
Running mod_proxy on ...
1
vote
0answers
178 views
Access denied trying to invoke a web service call
I'm trying to consume some methods from a web service which was developed for external people. When I call them I have this mistake:
Access is denied.
...
2
votes
1answer
191 views
PHP session losing data on production server - CodeIgniter
I'm having some issues with my CodeIgnighter site losing session data when pushed through to the production server.
We have a CodeIgnighter site that uses the session to store data related to ...
1
vote
0answers
47 views
Session storage on a separate server
I use 3 server through "Amazon balancer". On each server installed 2 (asp.net) web application (website, mobile site). "Balancer-Amazan"- so constituted that every 3 hours produces load transfer ...
3
votes
4answers
125 views
Keep a GET variable in URL
I have a bit of an odd question, I'm sure most of you realise that these sorts of questions arise out of certain situations that a developer has no control over!
I would like to work out how to keep ...
0
votes
1answer
79 views
Problems with POST and cookies
I have a PHP script with cURL that does a POST request to an ASP file (not mine, so I can't change it).
I have set a Cookie (ASPSESSIONID) that I have received from Echo (an HTTP POST app for Mac) ...
0
votes
1answer
103 views
MySQL instead of PHP Session
What method should I use to keep logged in my users, like google's gmail? (You can stay logged in for almost an unlimited time if you want - stay logged in function - and even if your IP is changed ...
0
votes
0answers
111 views
Cookie in Sharepoint to remember the login session
I have a Sharepoint site in classic authentication mode. After login I get a WSS_KeepSessionAuthenticated cookie. So I thought this is enough for Sharepoint to remember my login session like the . ...
-2
votes
1answer
126 views
how to clear cookies using python django
I am trying to develop login page for a web site. I am using django 1.4.2. I stored users which logged on correctly to a cookie using set_cookie. But I didnt find clear_cookie in django's document. ...
1
vote
1answer
55 views
Cross domain cookies - it must be possible [duplicate]
Possible Duplicate:
cross domain cookies
If i understand correctly, it is not possible to save cookies for different domains: only sub domains of the same root.
However, when looking on ...
0
votes
1answer
68 views
JSoup do not return all cookies
I'm stuck trying to login in a website using Jsoup to get information from another link of the same site. When I connect it isn't returning all cookies from the session. I'm not sure if __utma, ...
3
votes
2answers
453 views
Symfony 1.4 cookie issue
I am trying to find where Symfony is setting a cookie. When I visit my site (I'm using the sfDoctrineGuard plugin) I get the login page, which is the expected behaviour. When viewing the cookies that ...
1
vote
1answer
93 views
php can't delete cookie
I have this function to set a cookie:
private function setCookie($key, $value){
if(setcookie(
$key,
$this->encrypt($value),
time() + 2592000,
...
0
votes
1answer
181 views
Zend Auth Session Cookie
I'm stuck on a common problem but I don't really know how to get out.
The browsers don't keep the auth session.
Here is my setup.
"application.ini"
resources.session.save_path = ROOT_DIR ...
0
votes
0answers
29 views
How do I read the session_cookie_domain for a cookie from httprequest in django?
I know we have request.COOKIES but that just looks like:
COOKIES:{'__utma': '96992031.289374129.1351971737.1358256866.1358313446.115',
'__utmb': '96992031.9.10.1358313446',
'__utmc': '96992031',
...
0
votes
0answers
85 views
$_SESSION not unsetting
I have a set of variables in my session to unset, and all but the last one unsets.
This is my code
function unsetBoxProduct($old_prod_id) {
$fi=0;
while ...
0
votes
1answer
83 views
Rails: How to troubleshoot cookies that won't expire?
Followed, for the most part, Railscast #274 - Remember Me to set a remember me token in my Rails app and although cookies are "working" there seems to be no difference between cookies.permanent[…] = … ...
0
votes
1answer
199 views
What is the difference between a Cookie and Redis Session store?
I want to share sessions among 2 applications on different nodes; however, I am confused what the difference is between Cookie and Redis session stores; e.g. a cookie session might look like this:
...
0
votes
2answers
208 views
Simple PHP Logout Function, Doesn't Work Until I Leave the Page
I'm trying to implement a simple PHP logout script. I have the below code. When logged in and I click on a link that redirects to the logout script, it doesn't seem to realize I'm logged out and still ...
2
votes
1answer
78 views
Whether or not to use persistent cookies
We've just had a security auditor flag our use of persistent cookies to maintain login state in our web application. As a bit of background, our web application is multi-tenanted, but no (or not many) ...
0
votes
2answers
44 views
Keep session after brower is closed
I want to be able to keep a PHP session, even after the browser has been closed. I know on this question, they suggested using the session_set_cookie_parameters() parameter, but I am unable to find a ...
2
votes
1answer
126 views
How should I make a long PHP request via AJAX, periodically check for status updates, and close the script if the request cancels?
Part of the PHP web app I'm developing needs to do the following:
Make an AJAX request to a PHP script, which could potentially take from one second to one hour, and display the output on the page ...
0
votes
1answer
151 views
Javascript session cookie not writing in IE9
Hi there Stack Overflow users. I have created a nice little script to append A/B testing information from their API to one of our session cookies to be stored in our database. This script is working ...
1
vote
2answers
115 views
Javascript cookies and redirect
I need help changing this code so that the cookie only last through the session instead of 1 year forward. What changes do I need to make?
function createCookie(name,value,) {
if (days) {
...
3
votes
2answers
153 views
make the subdomain read parent domains sessions
I am using django. I have hosted xyz.com. As part of the same website, I have abc.xyz.com
Now I want abc.xyz.com to read session information from xyz.com, so I can treat logged in users accordingly.
...
1
vote
2answers
169 views
Good practice to allocate new session ID on each request?
A customer has requested some security enhancements to our Java web application, including the following:
According to our security team good security practices state that
session id should be ...


