vote up 0 vote down star

Hello Friends,

I am using .net 2005 c# and crystal reports 8.5 at development pc.

Before we are not using crystal report in our project now we are adding crystal report in our project, so when i transferred my project at server side it's gave crystal error so i think becz or crystal is not install at server. so i installed crystal 11 at server side, at development machine it's have crystal 8.5. When i run from server it's giving error at the starting point.

"Could not load file or assembly 'CrystalDecisions.ReportAppServer.ClientDoc, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The system cannot find the file specified."

Is it possible to have two version reference in web config e.g crystal 8.5 & 11 both

Is any body help me out please

Thanks

flag

25% accept rate

3 Answers

vote up 0 vote down

The error messages says it all, does your server have version 10.2.3600.0 of CrystalDecisions.ReportAppServer.ClientDoc with matching token in either the GAC or somewhere it will be found by your application or web site?

Sounds like you need a config update on the server.

link|flag
vote up 0 vote down

You probably need to add the reference to that DLL in your project (or otherwise get it into your /bin folder.

link|flag
Can you please explain more which dll is require? – Kartik Mar 20 at 20:00
CrystalDecisions.ReportAppServer.ClientDoc that is version 10.2.3600 – Jeff Martin Mar 20 at 22:09
vote up 0 vote down

It's just a version conflict, since your development machine is using an earlier version it's looking for that version of the .DLL file when you try to run it on the server. You're probably best off making sure the same version is installed on both your dev machine and the server, and then making sure your web.config using the DLL files from Crystal 11 in both.

The quick hack for now is to figure out the correct file version on the server, and enter that number into the web.config.

EDIT: The other option is to change the version of the .DLL in your web.config on the server, which is basically what the others are saying. The problem there is that you'll have to keep changing it every time you deploy... which would be very annoying. Plus you're testing on the dev machine isn't really valid because you're testing a different program. You're almost guaranteed to see bugs in production that you'll never see in DEV because something's changed between versions.

Is there some reason you can't install Crystal 11 on your dev PC?

link|flag
is it possible can i use both version dll reference in web config ? – Kartik Mar 20 at 20:01
No, I'm pretty sure it will complain about objects existing in two places... – Telos Mar 20 at 20:52

Your Answer

Get an OpenID
or

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