Hi
We are developing an ASP.NET 2.0 application and using the in built Crystal report system that it comes with.
We have everything running fine on our development server but when we publish the site to our production server - as soon as we visit the site to test it we get a horrible message from crystal reports that we just dont understand as below
================================================== ======================== Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.
Parser Error Message: Could not load file or assembly 'CrystalDecisions.Web, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The system cannot find the file specified.
Source Error:
Line 53: <error statusCode="404" redirect="/ErrorMsg/FileNotFound.htm"/> Line 54: </customErrors> Line 55: <httpHandlers><add verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/></httpHandlers></system.web> Line 56: </configuration>
================================================== ============================
Is this some type of Licencing issue ? Does it need to have a separate runtime Licence applied to the server ? or is it needed any configuration changes ? Any ideas ?
Thanks
|
| Author: Praveen 24 Sep 2008 | Member Level: Diamond | Rating:  Points: 3 |
make sure that ur .rpt exists in the path or not
means u'll load ur report from the path in that path check whether .rpt existing or not
hope this will help u
|
| Author: jayakumar 24 Sep 2008 | Member Level: Gold | Rating:  Points: 6 |
hi i had face the same issue.
the problem is with licence of the key of the crystal reports with VS2005.
to run the application on the server you have to install the runtime exe file of the crystal reports redistributer,which is in this following path of your development system.
C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\BootStrapper\Packages\CrystalReports\CRRedist2005_x86.msi
this is the installation file.this has been issued for the same purpose,this is only the runtime support for the crystal reports which is comes along with VS2005.
try this and let me know if u getting further.
|
| Author: pn 24 Sep 2008 | Member Level: Silver | Rating:  Points: 0 |
Thank you so much Jayakumar It is working....
|