cancel
Showing results for 
Search instead for 
Did you mean: 

SP 25 Installation issues

bcla
Participant
0 Kudos
1,640

So I just installed SP 25 on my 2012 server.

It said it said it needed it remove older crystal, fine no worries.

Then when I run my web application, which used to pull up in IE...now I get :

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

Am I missing a reference somewhere, I'm forgetting about?

Thanks.

Accepted Solutions (1)

Accepted Solutions (1)

0 Kudos

Typically that error is due to your AppPool being set to x86 and you built the app using x64 or visa-versa..

On your DEV PC install the EXE to integrate into Visual Studio.

On the App Server just install the MSI package.

Check your web.config and make sure all CR versions are 13.0.3500.0.

And read the info on the WIKI page for SP 21 and above:

https://wiki.scn.sap.com/wiki/display/BOBJ/Crystal+Reports%2C+Developer+for+Visual+Studio+Downloads

Don

bcla
Participant
0 Kudos

Don,

I've installed SP25 on the server and added the new assembly bindings to the web.config file so as not to recompile. However I'm still getting this error:

Parser Error Message: Could not load file or assembly 'CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The system cannot find the file specified.

Line 2: <%@ Register Assembly="CrystalDecisions.Web, Version=13.0.3500.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"

Interestingly enough, we have gotten past the Crystaldecisions.engine error...

Now when trying to display the report I get this. Any ideas?

Thanks

Answers (2)

Answers (2)

bcla
Participant
0 Kudos

closing, Don nailed it.

After reading :

https://wiki.scn.sap.com/wiki/display/BOBJ/Crystal+Reports%2C+Developer+for+Visual+Studio+Downloads

I see what I need to do.

Thanks, B

bcla
Participant
0 Kudos

Thanks Don, I think your on to something here.

So I corrected the web.config file.

I also re-installed the msi on the server.

Now I'm getting:

Parser Error Message: Could not load file or assembly 'CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The system cannot find the file specified.

Line 3: <%@ Register Assembly="CrystalDecisions.Web, Version=13.0.3500.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"

Is that because I need to recompile with SP25 on the dev machine?

Thanks again.