share sessions between asp and asp.net
-
Is there a canned piece of code out there (C#, preferably) somewhere I can use to share session values from asp.net to asp? I have a couple of scripts I won't have time to re-write, and I'd rather not spend scarce funds on a third party product. Thanks in advance.
-
Is there a canned piece of code out there (C#, preferably) somewhere I can use to share session values from asp.net to asp? I have a couple of scripts I won't have time to re-write, and I'd rather not spend scarce funds on a third party product. Thanks in advance.
We did it here, by writing a service. The service was called from the asp and then again from C# via COM interop. We used the session ID as a key into a hash table of key/values and just stuffed them into the asp.net session, having passed them in from the asp session. Sadly, the code belongs to my employer, so I can't give it to you. Christian I have drunk the cool-aid and found it wan and bitter. - Chris Maunder
-
We did it here, by writing a service. The service was called from the asp and then again from C# via COM interop. We used the session ID as a key into a hash table of key/values and just stuffed them into the asp.net session, having passed them in from the asp session. Sadly, the code belongs to my employer, so I can't give it to you. Christian I have drunk the cool-aid and found it wan and bitter. - Chris Maunder
I've seen the code for such a service somwhere recently. Have the link at work. So I will post it here on Monday.