D
DigitalUncle
I am running ASP pages on IIS5 with and very simple ActiveX. All the
ActiveX contains is a number of basic classes. These classes are
simply a collection of setters and getters w/o any business logic. The
reason I use this DLL is to store instances of the classes in a
session or application object, so that I don't have to go to the DB
for the data that never or rarely changes.
This setup worked fine for a while, but then crashed with Error:
0x800706F7 w/o any explanation. Reregestering DLL fixes the problem
for some time befor eit crashes again in a few days.
What could be the problem and how do I fix it? Thanks to everybody!
Exaple of my code:
VB ActiveX DLL:
Class MyClass
Public a
Public b
End Class
ASP Code:
Set myObj = Server.CreateObject( "MyActiveX.MyClass" )
myObj.a = "blah"
Set Session( "MyObject.Instance" ) = myObj
ActiveX contains is a number of basic classes. These classes are
simply a collection of setters and getters w/o any business logic. The
reason I use this DLL is to store instances of the classes in a
session or application object, so that I don't have to go to the DB
for the data that never or rarely changes.
This setup worked fine for a while, but then crashed with Error:
0x800706F7 w/o any explanation. Reregestering DLL fixes the problem
for some time befor eit crashes again in a few days.
What could be the problem and how do I fix it? Thanks to everybody!
Exaple of my code:
VB ActiveX DLL:
Class MyClass
Public a
Public b
End Class
ASP Code:
Set myObj = Server.CreateObject( "MyActiveX.MyClass" )
myObj.a = "blah"
Set Session( "MyObject.Instance" ) = myObj