have you checked with the operating system, with the development machine and the deployed machine, are the both boxes same, may be the development server is of 32 bit and the deployed server is of 64 bit, .....
thanks,
Dinesh Kumar S
Software Engineer
Remember to click “Mark as Answer” on the post If you solve your problem from my post(s) !
Sorry for the delay, i got stucted with client meets.
basically this problem may occur when you have installed the dll's of differect version and refering to a different version,
select the crystal report dll files and take its properties to check the version of the file, here if the verion mentioned in you config file and the version of the file reffered in your application are different then you will have to replace the files with
the versions required, for best practice copy past the dlls in from you development machine to the deployed server machine...
next is to check with the os versions...
thanks,
Dinesh Kumar S
Software Engineer
Remember to click “Mark as Answer” on the post If you solve your problem from my post(s) !
I want to share a bit of my experience when deploying my application to a shared server. I currently have my Crystal Report project hosted at
ASPHostCentral. Initially, I also have all of these headaches: Crystal Report is not running, "bobj is undefined" error message shown up, and all sort of problems.
Luckily, I had staff at ASPHostCentral to help me. There are a bit of things that you need to make sure:
- Please make sure that the Crystal Report 2005 runtime is installed on the server.
- Please give the Read and Write Permissions on C:\Windows\Temp
- Please make sure you copy the aspnet_client and crystalreportviewer folder on your physical folder.
I have had this completed and my Crystal Report project works smoothly until now. Honestly speaking, I have been wandered around, looking for a good Crystal Report provider and when I found ASPHostCentral, I have nothing to complain. You can always preview
their Crystal Report demo project at
http://crystalreportdemo.asphostcentral.com and you can certainly be assured that they really DO support Crystal Report.
saedabaid
Member
8 Points
100 Posts
problem in deploying crystal report
Apr 20, 2010 07:35 PM|LINK
i have the problem during the deploying page to the existing website but the page works in the localhost,but didnt work on the server
First different problem appeared but i solved it by installing the Crystalreport Dlls in the Bin Folder of the website//i solved this problem,
<httpHandlers><add verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/></httpHandlers>
Now the problem is in the framework like this
couldnt load the specified assembly
please Help me
dinudany
Member
615 Points
177 Posts
Re: problem in deploying crystal report
Apr 21, 2010 05:24 AM|LINK
have you checked with the operating system, with the development machine and the deployed machine, are the both boxes same, may be the development server is of 32 bit and the deployed server is of 64 bit, .....
Dinesh Kumar S
Software Engineer
Remember to click “Mark as Answer” on the post If you solve your problem from my post(s) !
saedabaid
Member
8 Points
100 Posts
Re: problem in deploying crystal report
Apr 21, 2010 05:44 AM|LINK
no,how to check this?
saedabaid
Member
8 Points
100 Posts
Re: problem in deploying crystal report
Apr 21, 2010 07:33 AM|LINK
Here is my code
<compilation debug="true"> <assemblies> <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Data.OracleClient, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="Oracle.DataAccess, Version=2.111.6.20, Culture=neutral, PublicKeyToken=89B483F429C47342"/> <add assembly="CrystalDecisions.CrystalReports.Engine, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/> <add assembly="CrystalDecisions.ReportSource, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/> <add assembly="CrystalDecisions.Shared, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/> <add assembly="CrystalDecisions.Web, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/> <add assembly="CrystalDecisions.ReportAppServer.ClientDoc, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/> <add assembly="CrystalDecisions.Enterprise.Framework, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/> <add assembly="CrystalDecisions.Enterprise.InfoStore, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/> </assemblies> </compilation>Specifically The problem in this three lines
<add assembly="CrystalDecisions.ReportAppServer.ClientDoc, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/> <add assembly="CrystalDecisions.Enterprise.Framework, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/> <add assembly="CrystalDecisions.Enterprise.InfoStore, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>first the problem appears in the first line of this three
when i deleted it the problem appeared in the second line
saedabaid
Member
8 Points
100 Posts
Re: problem in deploying crystal report
Apr 21, 2010 10:43 AM|LINK
may be the cause of the problem that i havent alicense key in the crystal Report??Or Not??
dinudany
Member
615 Points
177 Posts
Re: problem in deploying crystal report
Apr 21, 2010 10:47 AM|LINK
Sorry for the delay, i got stucted with client meets.
basically this problem may occur when you have installed the dll's of differect version and refering to a different version,
select the crystal report dll files and take its properties to check the version of the file, here if the verion mentioned in you config file and the version of the file reffered in your application are different then you will have to replace the files with the versions required, for best practice copy past the dlls in from you development machine to the deployed server machine...
next is to check with the os versions...
Dinesh Kumar S
Software Engineer
Remember to click “Mark as Answer” on the post If you solve your problem from my post(s) !
niralpatel
Contributor
2391 Points
452 Posts
Re: problem in deploying crystal report
Apr 21, 2010 10:50 AM|LINK
Hi, you should install the Crystal Setup that is inbuilt in the .Net 2005 SEtup CD
and try , i m sure your problem get solved. Please install it only at Server PC Where
u r uploading your Application.
or Let me know for Further help.
Thanks
Niral Patel
(INDIA)
necro_mancer
Star
8073 Points
1587 Posts
Re: problem in deploying crystal report
Apr 22, 2010 04:52 AM|LINK
hi there,
I want to share a bit of my experience when deploying my application to a shared server. I currently have my Crystal Report project hosted at ASPHostCentral. Initially, I also have all of these headaches: Crystal Report is not running, "bobj is undefined" error message shown up, and all sort of problems. Luckily, I had staff at ASPHostCentral to help me. There are a bit of things that you need to make sure:
- Please make sure that the Crystal Report 2005 runtime is installed on the server.
- Please give the Read and Write Permissions on C:\Windows\Temp
- Please make sure you copy the aspnet_client and crystalreportviewer folder on your physical folder.
I have had this completed and my Crystal Report project works smoothly until now. Honestly speaking, I have been wandered around, looking for a good Crystal Report provider and when I found ASPHostCentral, I have nothing to complain. You can always preview their Crystal Report demo project at http://crystalreportdemo.asphostcentral.com and you can certainly be assured that they really DO support Crystal Report.
Good luck!
crystal report hosting crystal report problem
Professional SQL 2008 R2 Service
saedabaid
Member
8 Points
100 Posts
Re: problem in deploying crystal report
Apr 23, 2010 06:01 AM|LINK
thank you for your responses,but how to install the crystal report2005 runtime,Can you give me the download link please?
saedabaid
Member
8 Points
100 Posts
Re: problem in deploying crystal report
Apr 23, 2010 06:57 AM|LINK
I think i found the problem but i cant solve it,when i open the visual studio 2005 and click right on the Bin folder and click add reference ,i saw
The Crystal decision Dlls with Version 10.2.3600.0 and their path c:\\programfiles\\comonfiles\\Businessobjects\\2.7\\managed\\*.Dlls Files
But when i go to this path and see the dlls Files,I saw Different Version 10.2.51014.0 Not 10.2.3600.0
is it the problem or What,if it is how can i solve it?
Please Help Me