I am a .Net developer. New to OPC. When I tried some samples of OPC Client all of them give this error. It seems the DLL is not registered it seems. But I don't know how and where to register this.

error: retrieving the COM class factory for component with CLSID failed due to the following error: 80040154

Even I tried this

regsvr32 Interop.OPCAutomation.dll", 

but it also throws error like

The module "Interop.OPCAutomation.dll" was loaded but the entry-point DllRegisterServeer was not found.
Make sure that "Interop.OPCAutomation.dll" is a valid DLL or OCX file and then try again.

I have gone through so many existing forums. So many of them said to change the Platform Target to x86 and still I am having the same issue. FYI, I can see only see 'Active (Any CPU)' in the Platform option from the top of the Build tab of Project Properties.

Here are my environment details:

.Net 2005
OPCAutomation Weapper
Windows 7 64-bit OS
Dell Inspiron 1525 (I hope this is not a 64bit machine, but my engineer installed 64bit OS somehow).

Please help me.

Thanks in advance!

link|improve this question

14% accept rate
are you sure that the dll that you are trying to register is a OCX if it is or if it's an UnManaged COM DLL try regsrv32 if not then all you should need to do is add a reference to that .dll.. if that doesn't work then recompile the project and set your .x86 to x64 – DJ KRAZE Feb 20 at 19:29
@DJKRAZE Thanks for your time with me. I'm not sure about the dll that it is a OCX, but it is a common one everyone using. I have downloaded a sample project which includes this DLL file. Also tried the regsrv32, the above mentioned error came. I already added a reference to the DLL and checked, no difference. Finally as you said I set my target to x64 and tried, no improvement. – Abu Sithik Feb 20 at 19:48
What is the OS you have..is it 32bit or 64bit..? also what about the GAC has the Interop.OPCAutomation.dll been added to the GAC..? – DJ KRAZE Feb 20 at 19:50
My OS is 64-bit. I have no idea about GAC. sorry and pls help. – Abu Sithik Feb 20 at 19:57
there is a GAC utility that you can use to register / add the dll to the Global Assembly Cache.. do a google search for GAC.. – DJ KRAZE Feb 20 at 20:12
show 2 more comments
feedback

1 Answer

The error you're getting is more than likely due to the OPC server not being properly registered. Make sure it is registered (usually by running it at the command line with a "/regserver" or "/service" parameter). There may also be security issues in which case you'd have to run 'dcomcnfg' (DCOM Config) to make sure the client has access to the server.

link|improve this answer
He thinks the wrapper is the server. You might want to expand on that. – Hans Passant Feb 20 at 20:23
I have gone through the DCOM Config. I can see so many components of the system. Is there any specific component I should check permission for OPC Server? – Abu Sithik Feb 20 at 20:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.