I am having one last issue with a database server that I had to bring online hurriedly last week. One of the functions of this server is to create Serial Numbers using Armadillo software. It worked fine on the old server (which was setup and running before I got here) and the only instruction that I was given (there is no documentation) was that I just had to put the DLL in the path on a new server and it would work. Well... It does not appear to be so. The specific piece of code that I have that calls the DLL is
I have CodeGen.DLL in system32 and sysWOW64. I have run Depends to check for dependencies and I get the exact same results on the old machine that works as on a machine that does not work. And that result is
I have verified that sp_OACreate is there, odsole70.dll and made sure that the path is correct. I am now out of ideas. Has anybody else out there had an issue like this? Have you found anything that works?
Thanks,
Willie
Code:
exec @rt = sp_OACreate 'CodeGenAX.CodeGenDLL.1', @kg OUTPUT
I have CodeGen.DLL in system32 and sysWOW64. I have run Depends to check for dependencies and I get the exact same results on the old machine that works as on a machine that does not work. And that result is
Code:
OLE Automation Error Information
HRESULT: 0x800401F3
Source: ODSOLE Extended Procedure
Description: Invalid class string
error! 1
I have verified that sp_OACreate is there, odsole70.dll and made sure that the path is correct. I am now out of ideas. Has anybody else out there had an issue like this? Have you found anything that works?
Thanks,
Willie