I developed a Windows service using C#.NET to generate PDF report. To generate PDF file I am using a third party dll. The application is running in my Windows XP platform. When I deployed the service in Windows Server 2008 64 bit version, I got this error:

Retrieving the COM class factory for component with CLSID {46521B1F-0A5B-4871-A4C2-FD5C9276F4C6} failed due to the following error: 80040154.

I registered the DLL using the regsvr32 command. I able to see this CLSID in the registry. But the problem persists.

What could be the problem?

link|improve this question

32% accept rate
A web application hosted in the same server is able to generate PDF file without any error. – gopal Jun 24 '09 at 7:59
feedback

8 Answers

up vote 54 down vote accepted

In VS - project properties - in the Build tab - platform target =X86

link|improve this answer
You just saved me a pointless headache. – Babak Naffas Oct 22 '10 at 17:09
Saved me a headache, too. – Bob Kaufman Dec 3 '10 at 23:15
8  
You just saved me 1 million dollars – Crackerjack May 19 '11 at 0:02
1  
in VS2008 I found this option under 'Compile->Advanced Compile Options...' (at the bottom of the window tab) and then 'Target CPU' (x86) – Rodolfo Jun 27 '11 at 15:56
headache resolved. – skimania Jan 12 at 17:09
show 1 more comment
feedback

It sounds like your service was built against 'Any CPU' causing you errors on 64bit where you are using COM components. You need to build it for 'x86'.

The website is proberbly running as a 32bit process which is why it can use the component. Building your solution against x86 will force your service to run as 32bit.

link|improve this answer
Thank You Very Much! – gopal Jun 24 '09 at 11:48
1  
Mr. Stevo3000 i got the similar problem when i fetching the outlook contacts in my system. it is working fine in my system (local) but when i uploaded in server it is giving the error like Retrieving the COM Class factory for component with CLSID failed due to the following error:80040154 can u look my question once please : stackoverflow.com/questions/2130603/… thank you – Surya sasidhar Jan 25 '10 at 9:31
feedback

I ran into a very similar issue.

I needed to use an old 32-bit DLL within a Web Application that was being developed on a 64-bit machine. I registered the 32-bit DLL into the windows\sysWOW64 folder using the version of regsrv32 in that folder.

Calls to the third party DLL worked from unit tests in Visual Studio but failed from the Web Application hosted in IIS on the same machine with the 80040154 error.

Changing the application pool to "Enable 32-Bit Applications" resolved the issue.

link|improve this answer
1  
This is the easiest way I've found to fix this issue. Thanks! – dexter Jan 30 at 15:03
feedback

The problem is that the server process is 64 bit and the library is 32-bit and it tries to create the COM component in the same process (in-proc server). Either you recompile the server and make it 32-bit or you leave the server unchanged and make the COM component out-of-process. The easiest way to make a COM server out-of-process is to create a COM+ application - Control Panel -> Administrative Tools -> ComponentServices.

link|improve this answer
feedback

I am using VS 2008. I dont have any options to change the platform type in the Poperties Page\Build Tab. All i have is :

  1. Start Action(F5)
  2. Target Framework
  3. Build Solution Action
  4. Accessiblitiy Validation

Thats it! Where else can i look to change the platform.

link|improve this answer
feedback

To change to x86:

  1. Create a setup project for your solution.
  2. After you create it, Go to Solution Explorer, right click the setup project.
    • Press Configuration Manager.
    • Click on: "Active Solution Platform" combobox and select New (If there is no x86 displayed)
    • Select from first combo x86 then press OK.
    • rebuild Setup project, then rebuild All the project.
link|improve this answer
feedback

The solution for windows 2008 server x64 is:

  1. open cmd.exe with Administrator permission.
  2. Copy the dll to the folder C:\Windows\SysWOW64
  3. run regsvr32 from C:\Windows\SysWOW64
  4. Verify that dll is in registry of Windows.
  5. If you has a .exe x86 that use the dll, the exe must be compiled in x86 mode.
  6. The exe must be installed in folder C:\Program Files (x86)

This procedure is valid, it is ok.

link|improve this answer
feedback

If you are running a website, you could also try to set your application pool to disable 32-bit Applications (under advanced settings of a pool).

link|improve this answer
I had the opposite and had to enable 32-bit applications. – row1 Apr 16 at 6:23
feedback

protected by Community Jun 20 '11 at 8:20

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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