Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can anyone tell me what is happenning here? I am getting duplicated session ID's across 2 seperate machines, 2 different browsers in a shopping cart website?

I've gone so far as generating a new session id with a 300 character random string, and still they get duplicated

This is the new code... just take out the SyncLock stuff for the old code:

    Dim _key As String = String.Empty
    SyncLock _locker
        _key = Guid.NewGuid().ToString()
        Session("Identifier") = Validations.GeneratePassword(150, 300)
        Session("SessionID") = _key
        Session("SiteID") = "F2630237-E355-4C8A-947E-BBAC97ECA550"
        Session("HomePage") = 13
    End SyncLock

yes I know Session("SessionID") is not the session ID, however, we used to use Session.SessionID for the "Identifier", and it was getting duplicated

share|improve this question
You generated the session yourself? Can you post the code that generates the session? – Steven Apr 24 '12 at 14:08
You'll need to post some code so that we can see what your code is doing! How is the session ID being stored? – Tim Apr 24 '12 at 14:09
used to use the built in Session.SessionID, however, it was happenning with that – o7th Web Design Apr 24 '12 at 14:24
I just added in a SyncLock to see is this will get around it, I also turned off output caching in IIS for .aspx pages – o7th Web Design Apr 24 '12 at 14:26

2 Answers

Why would you generate your own SessionID?
ASP.NET and the browser do this out of the box and probably better that you or I.

I recommend you use this instead:

HttpSessionState.SessionID

share|improve this answer
we used to use the Session.SessionID as an identifier for the "cart". But we started getting the duplicatations across machines, so we went with generating a random length, random alphanumeric string, and it still happens – o7th Web Design Apr 24 '12 at 14:26
I have searched around for this issue, and it seems by what I am seeing, is that I am not the only one... – o7th Web Design Apr 24 '12 at 14:28
Random is not necessarily unique. – jrummell Apr 24 '12 at 14:29
I understand that, however, I figured there are pretty good odds that a random string that is randomly between 150 and 300 characters should do the trick ;) Besides, nothing works. New Guid does not work, sessionID does not work... they all produce duplicates – o7th Web Design Apr 25 '12 at 12:36
up vote 0 down vote accepted

I found the solution to this.

if i set the session manager in web.config to be my class, and it worked

<sessionState mode="InProc" cookieless="false" timeout="20" sessionIDManagerType="o7th.Projects.Core.SessionManager"/>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.