Hi All. I've made mods to a .dll that we use as a COM object on a W2K
Server
running IIS in order to access data via RDS. After configuring everything
according to the do***entation, I'm receiving the (0x80070005) Unknown
Error
Descr with a number or -2147024891 and source = Microsoft ADO/RDS. The
code
to instantiate the object and login has not been modified and is currently
working in the prod environment. The problem is coming from the test
server.
I have placed a logging function in the COM object, but no log file has
been
written. And because the first call to this function is in the
Class_Initialize Event, I'm not sure that the object is being instantiated
at
all. The following snippet shows where the error occurs.
Set obj = New RDS.DataSpace
Set objLogin = obj.CreateObject("File_transfer.clsFileTransfer",
PROD_SERVER)
'This is where the error occurs
blnLoginCheck = objLogin.Login(strUserName, strPW)
I've went thru all the IIS and RDC stuff (MSADC Virtual Directory setup
and
permissions, Permission on the msadc subfolder in the Common files\System
dir, added the entry in the Reg for my .dll, Registered my .dll, etc.) but
still no luck. I've even tried the same on my local machine running IIS
and
still no go.
Btw, if I reference the cls in my project and call the Login Function,
everything is OK.
Any Ideas?
Thanks, Kit


|