Hey All,
We have a situation here.

Application A ---> encrypted securelink to ---> Application B (on a
different window)

In this transition, I clear the session <cfset tmp =
StructClear(session)>

And Boom!! No sessionid.

To recreate the session id, I use the following code in my
Application.cfm

<!--- Check session --->
<cflock timeout="10" throwontimeout="no" type="exclusive"
scope="session">
        <cfif not structKeyExists(session,"sessionId")>
                <cfset session.sessionId = createUUID()>
        </cfif>
</cflock>

Things get funny here

The session.sessionid looks like 3BF20CAB-B458-D138-E88954701199BDBF
But cookie.jsessionid looks like C130A3C01B45D255AF94376154C51BA3

In CF Admin,
 Enabled J2EE session variables     
 Enabled Session Variables 

The Question

1.> Any reliable way of getting/keeping sessionid
2.> What happens to session.sessionid on timeout. How is it recreated.
3.> Is there any better way to force a new session on a different
window.

Regards,
Sameer S. Kekade.


---
You are currently subscribed to cfaussie as: [email protected]
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/

Reply via email to