The exact error is as follows

"Could not load file or assembly 'Microsoft.SqlServer.Replication, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' or one of its dependencies. An attempt was made to load a program with an incorrect format."

I've recently started working on this project again after a two month move to another project. It worked perfectly before, and I've double checked all the references.

link|improve this question
feedback

5 Answers

The answer above is correct, but you may also need to enable 32-bit applications in your AppPool.

See http://www.alexjamesbrown.com/uncategorized/could-not-load-file-or-assembly-chilkatdotnet2-or-one-of-its-dependencies-an-attempt-was-made-to-load-a-program-with-an-incorrect-format/

link|improve this answer
6  
This was the cause of the problem for me. Thanks soo much. – Neil Barnwell Sep 17 '10 at 9:30
2  
+1 THANK YOU!!! :) – IanR Oct 7 '10 at 19:30
awesome, thanks :) – izb Jan 5 '11 at 15:13
1  
The link doesn't work, but your explanation was enough to solve my problem. +1 – Andrew Shepherd Mar 22 '11 at 22:53
7  
It might be worth noting that this AppPool solution only applies to ASP.NET applications - could confuse some devs that never used/configured ASP.NET or IIS. – galaktor Apr 11 '11 at 7:38
show 4 more comments
feedback
up vote 61 down vote accepted

I've found the solution. I've recently upgraded my machine to Windows 2008 Server 64-bit. The SqlServer.Replication namespace was written for 32-bit platforms. All I needed to do to get it running again was to set the Target Platform in the Project Build Properties to X86.

link|improve this answer
feedback

Change

Project Properties> Build > Target CPU to "Any CPU"

it will resolve the issue in case of platform dependency.

Thanks

Mazhar Karimi

link|improve this answer
+1 Thank you for this answer. It fixed my problem! – Mike Jul 8 '11 at 21:02
Has no effect, unfortunately. – jonathanconway Aug 6 '11 at 3:43
1  
I was wrong - this worked, after I got rid of all my 'bin' folders. Thanks! – jonathanconway Aug 6 '11 at 4:19
Also fixed my problem, but only after doing this for EVERY project in my solution. The steps mentioned are for C# projects. For VB.NET projects, change Project Properties > Compile > Advanced Compile Options > Target CPU to "AnyCPU" – Francois Botha Sep 15 '11 at 9:44
In my case, the project was already targeting "Any CPU". But I'm running 64-bit Windows and was trying to DllImport an old-school hardware driver. Specifically changing the target to x86 fixed it for me. – bsegraves Nov 14 '11 at 16:00
feedback

Go to IIS -> Application Pool -> Advance Settings -> Enable 32-bit Assemblies

link|improve this answer
1  
you are BRILLIANT! – Mickey Perlstein Apr 8 at 15:23
this is what worked for me :) – developer747 May 9 at 19:02
feedback

For those who get this error in an ASP.NET MVC 3 project, within Visual Studio itself:

In an ASP.NET MVC 3 app I'm working on, I tried adding a reference to Microsoft.SqlServer.BatchParser to a project to resolve a problem where it was missing on a deployment server. (Our app uses SMO; the correct fix was to install SQL Server Native Client and a couple other things on the deployment server.)

Even after I removed the reference to BatchParser, I kept getting the "An attempt was made..." error, referencing the BatchParser DLL, on every ASP.NET MVC 3 page I opened, and that error was followed by dozens of page parsing errors.

If this happens to you, do a file search and see if the DLL is still in one of your project's \bin folders. Even if you do a rebuild, Visual Studio doesn't necessarily clear out everything in all your \bin folders. When I deleted the DLL from the bin and built again, the error went away.

link|improve this answer
I just did a rebuild and the issue went away without having to manually deleting the DLL. Thanks! – Trevor Dec 14 '11 at 20:46
feedback

Your Answer

 
or
required, but never shown

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