Re: How to retain IIS session ? (General questions)
Hi,
If I remove HttpDLX fromthe equation and call the pages directly, the sessions are retained (but I loose the functionality I require).
Only when HttpDLX calls the page, the page no longer see's this as the same user (thus another session).
I am passing everything I possible can from the ASP page to the HttpDLX com. I noted prior what is being accepted over.
I can confirm that HTTP_COOKIE is being passed and received on the other page, but when I display request.cookies in ASP the data was not carried from the header.
I am also noting that nothing carries over unless I have the value as:
[code]
objHTTP.request.Headers.Add mid(name,6,len(name)-5), & Request.ServerVariables(name) &
[/code]
If I use the below, the values across are empty, but the name is there:
[code]
objHTTP.request.Headers.Add mid(name,6,len(name)-5), Request.ServerVariables(name)
[/code]