« Previous Next »
Last post 04-28-2009 10:29 PM by lextm. 3 replies.
Average Rating Rate It (5)Thank you for the rating!
Page 1 of 1 (4 items)
Sort Posts: Oldest to newest Newest to oldest
I'm getting an OLE System error that file can't be found when my ISAPI DLL trys to call a .NET DLL. This is occurring on a new installation running Server 2008 and IIS 7. The same ISAPI DLL and .NET DLL are communicating fine within the other installation running Server 2003 and IIS 6. I first had difficulty with the 2003/IIS6 installaction until I registrered the .Net DLL with regasm.exe and installed the .NET DLL in the c:\windows\assembly (GAC) folder. I've done the same with the new installation, but get the above error. Any ideas what I'm missing?
Do you use the following command line to register this .NET assembly?
regasm netdcom.dll /codebase /tlb
where netdcom.dll is the file name.
If you already did that, can you write a VB script to call this COM locally?
How did this standalone application calls this .NET assembly? Also via COM interface?
If you add this .NET assembly as reference of this app, or the app uses reflection to load it, then the VB script test is still a must to narrow down the problem.