I still have a lot of different SESSIONID cookies for my single site
www.xprodin.beFurther investigation brought me to the following:
In the SendFile embed of the WebHandler procedure, I'm changing the filename of the page to load.
When I'm doing this, I have a different SESSIONID cookie for every page loaded (HTML, CSS, even GIF files have a different SESSIONID cookie). (see screenshots hereafter)
When I put my code in comment, so I doesn't change the filename, I only have 1 SESSIONID cookie.
_SendFile embed: message('self.sessionID=' & self.SessionID)
Fetch_Level(p_FileName)
!---
!--- language onafhankelijke pagina's
!---
Case lower(loc:filename)
Of 'index.html'
self.SetValue('page', loc:filename)
self.SetValue('switch', 'welkom')
do SetValues
loc:filename = 'index1.html'
Parent._SendFile(loc:filename, p_header)
Return
Of 'admin.html'
self.SetValue('page', loc:filename)
self.SetValue('switch', 'admin')
do SetValues
loc:filename = 'index2.html'
Parent._SendFile(loc:filename, p_header)
Return
The message('self.sessionID=' & self.SessionID) popups a lot of different SESSIONID cookies - see screenshot
www.shopplus.be/clip1.pngWhen I don't change the filename - everything is OK -
www.shopplus.be/clip5.pngIn Firebug you see all the different SESSIONID cookies:
www.shopplus.be/clip2.pngwww.shopplus.be/clip3.pngwww.shopplus.be/clip4.pngWhat I'm I doing wrong?
regards
Patrick De Laet