Forum Moderators: open
I've got a DLL my application needs to use. The application just moved from a development server to the server I'm going to deploy it on, and it works until it tries to use a third party DLL I purchased. I thought I only needed to drop the DLL in the bin folder to have the server recognize it - is this incorrect?
The error message I get is:
[b]System.Runtime.InteropServices.COMException: COM object with CLSID {BF18F2A7-8B30-11D3-A95C-00008639BD6E} is either not valid or not registered.[/b] What do I need to do to make it work?
Thanks in advance,
g.
F:\pathToDLL\myDLL.dll was loaded, but the DllRegisterServer entry point was not found.
DllRegisterServer may not be exported, or a corrupted version of F:\pathToDLL\myDLL.dll may be in memory. Consider using PView to detect and remove it.
I should point out that it shows up in the global assembly cache, and that when I tried to use the command pointing there, it couldn't find the DLL. So I pointed at the bin folder of my virtual directory.
Oy.. What I wouldn't give some days to go back to Java.. Thanks anyway for the tip. :)