Questions tagged [sessionid]

A session ID is a unique identifier that relates session data to a specific user.

A session ID is a unique identifier that relates session data to a specific user.

In an HTTP context, it is usually stored in a cookie and sent to the server on every request. The server uses the session ID to load the data that was persisted in the session.

The lookup process on the server can be either file-based (where the session ID is used as part of the file name), or from a database (where the session ID is used as the primary key).

636 questions
0
votes
1 answer

OWA sessionid cookie lost when logging into a Tomcat site iframe

we have made an extension to OWA page, connecting to a web application running in Tomcst. The content served by this application is shown in an iframe inside OWA page using isapi. This is working everywhere but in a customer where the session…
0
votes
1 answer

SessionID generating muliple times for single request in asp.net?

Generally in asp.net we have unique sessionID for one request, Example : Once you browse any website, during this entire browsing activity from one browser is considered as one Session, and it should only carry one Session ID But here for my…
þÍńķ
  • 353
  • 1
  • 11
  • 31
0
votes
1 answer

Same session_id() values for different sub domains in IE

I have a web page name as page1.php in one sub-domain (Ex. abc.example.com). The content of page1.php as follows. "; ?> Then I have another web page…
AnujAroshA
  • 4,623
  • 8
  • 56
  • 99
0
votes
1 answer

Can you kill particular sessions?

I have a shopping cart which uses sessions for the basket. I am also using a finance company as a payment option. The finance company processes the order then sends a HTTP POST response to my server. The order_id and session_id will be returned in…
Peter Stuart
  • 2,362
  • 7
  • 42
  • 73
0
votes
2 answers

PHP / MYSQL how to give name to _SESSION

I'm new to PHP and I'm trying to make a website with member login (without members panel). I have a simple webpage where some pages can be viewed only if you are logged in. Could you please tell me how to give a temporary name to a _SESSION ? This…
user2476097
0
votes
1 answer

PHP Session_start Warning

Ok, so I'm getting a 3 part warning from PHP that is occuring on IE ONLY. It does not occur on Firefox. I have read a few other StackOverflow threads on this issue and used one workaround located here: The session id is too long or contains illegal…
DMSJax
  • 1,709
  • 4
  • 22
  • 35
0
votes
1 answer

how to know expiration time of ASP.NET_SessionId from cookie file in php?

i am using curl to login to a remote site and the remote site sends me cookie and i save it as cookies.txt.I use the cookie to get the rest of protected pages without having to login using curle again! Now i want to know when asp.net sessionId…
user1788736
  • 2,727
  • 20
  • 66
  • 110
0
votes
1 answer

Cannot share ASP.NET session with wcf service

So, I have on same machine asp.net app and wcf service. And I'm trying to share asp.net session between them. I have configured Sql server to store my session data. I have ASPState Db and two tables in tempdb: ASPStateTempSessions,…
Andriy Khrystyanovich
  • 1,422
  • 3
  • 19
  • 38
0
votes
1 answer

Custom Session ID generation in Jboss 5

Is there a way to use custom session ID generator in Jboss 5? The reason I need this: my company application needs to pass penetration test and for that it needs to have session IDs, which "are 128 bit in length and comprised of random values".
HaXkil
  • 161
  • 6
0
votes
1 answer

session changes on page refresh

Maybe I'm misunderstanding this, but I expect the following to return the same session id on page refresh; Whenever I refresh the page, the session id updates to a new one. I'm…
0
votes
2 answers

PHPSESSID won't die

I'm trying to make a simple logout script for my site, but for some reason, I can't kill this cookie. I was able to kill another cookie which I named "fontCookie" but this default-named one won't go away. What could be causing this issue? This is…
Sam
  • 2,309
  • 9
  • 38
  • 53
0
votes
2 answers

Android PHP - Store Session to mySQL DB

I am a beginner in Android and I have the following code: (On the PHP side, after the user logs into my Android App) session_start(); $username = $_POST['username']; $password = $_POST['password']; $query = mysql_query("SELECT * FROM users WHERE…
Elona
  • 3
  • 3
0
votes
1 answer

Expire manually a Spring Security Session

I use Spring Security. I don't know how to expire the Spring Security session in a process. I tried this but it gives a null pointer exception : List allSessions; SessionRegistry sessionRegistry; // this line returns a null…
loulou
  • 331
  • 1
  • 5
  • 20
0
votes
2 answers

Check if session has been started and set global var for javascript to use

I have the following setup: index.php subpage.php When visiting either pages I have a "header intro animation". I only want the user to see this animation upon first page visit and not repeat it when refreshing/visiting other subpages within the…
user1231561
  • 3,239
  • 6
  • 36
  • 55
0
votes
1 answer

Session doesn't get passed from page to page with eval()

I'm trying to get a session to pass from page to page while using eval(). Basically I have one page that handles all other requests and just gets the pages output via an eval() call. Everything works fine, but for some reason the session information…
SISYN
  • 2,209
  • 5
  • 24
  • 45