NetTalk Central
NetTalk Web Server => Web Server - Ask For Help => Topic started by: peterH on October 16, 2016, 06:17:08 AM
-
Hi Bruce,
From the 9.14 Version History:
Add: SessionIDName property to WebHandler - let's you override name of SessionID cookie.
But I think you forgot to include template support for this. All I see in netweb.clw is:
,self.SessionIDName = 'SessionID'
Peter
-
Hi Peter,
There's no template support for this. The edge case where you use this is very minimal, and it should not be done gratuitously, so if you want to do it you need to add embed code to the app.
In WebHandler, ProcessReqest, before parent call.
self.SessionIDName = 'OtherSessionID'
Cheers
Bruce
-
Hi Bruce,
Ok, thanks.
Peter