I am trying to install a dll into COM, and use it in my classic ASP page. The object is supposed to replace the Session object in classic ASP. It's a workaround to get ASP and ASP.NET to share session state that I found on MSDN here:
http://msdn2.microsoft.com/en-US/lib...oaspnet_topic6
I can get their provided example project to work on my local machine and on another server, but of course not on the server I need it to work on. I have been banging my head against the wall for about 2 days on this so far.
I would just move the dev site to the server this does work on, but I need to understand the problem in case this happens on the production server when I deploy these changes.
The VBScript code that declares the object in an include file thats included at the top of every asp page in the site seems to work:
dim Session
set Session = server.CreateObject("SessionMgr.Session2")
But then when you get to the first use of the Session object it gives:
Microsoft VBScript runtime error '800a01b6'
Object doesn't support this property or method
Nothing shows up in the event viewer that can point me the right direction. Anyone have any ideas on this type of problem??