Charts are not rendered in CR for VS2005 Beta2 Version<p>After much newsgroup searching, I was able to make CR work on my web server. However the charts (images) inside the reports do not show up.<br />The src attribute for these images look like this:<br />src="//CrystalImageHandler.aspx?dynamicimage=cr_tmp_image_5f03e8ad-37b4-4b16-923e-264e3b3a0314.png"<br />And obviously is not finding anything.<br />Hence 2 questions:<br /><br />1. How can I specify the domain name for the URLs or tell it to use relative path?<br />2. Where can I find CrystalImageHandler.aspx ? I searched my entire HD and could not find it.<br /><br />Thank you.</p>© 2009 Microsoft Corporation. All rights reserved.Mon, 28 Jul 2008 20:09:17 Z8e318a9f-a846-49bf-bba2-662baf0ef251http://social.msdn.microsoft.com/Forums/en-US/vscrystalreports/thread/8e318a9f-a846-49bf-bba2-662baf0ef251#8e318a9f-a846-49bf-bba2-662baf0ef251http://social.msdn.microsoft.com/Forums/en-US/vscrystalreports/thread/8e318a9f-a846-49bf-bba2-662baf0ef251#8e318a9f-a846-49bf-bba2-662baf0ef251gzingerhttp://social.msdn.microsoft.com/Profile/en-US/?user=gzingerCharts are not rendered in CR for VS2005 Beta2 Version<p>After much newsgroup searching, I was able to make CR work on my web server. However the charts (images) inside the reports do not show up.<br />The src attribute for these images look like this:<br />src="//CrystalImageHandler.aspx?dynamicimage=cr_tmp_image_5f03e8ad-37b4-4b16-923e-264e3b3a0314.png"<br />And obviously is not finding anything.<br />Hence 2 questions:<br /><br />1. How can I specify the domain name for the URLs or tell it to use relative path?<br />2. Where can I find CrystalImageHandler.aspx ? I searched my entire HD and could not find it.<br /><br />Thank you.</p>Sun, 19 Jun 2005 05:33:47 Z2005-06-19T05:33:47Zhttp://social.msdn.microsoft.com/Forums/en-US/vscrystalreports/thread/8e318a9f-a846-49bf-bba2-662baf0ef251#28b49c2a-bf59-4b0a-bf2e-0e6de3902e0ehttp://social.msdn.microsoft.com/Forums/en-US/vscrystalreports/thread/8e318a9f-a846-49bf-bba2-662baf0ef251#28b49c2a-bf59-4b0a-bf2e-0e6de3902e0egzingerhttp://social.msdn.microsoft.com/Profile/en-US/?user=gzingerCharts are not rendered in CR for VS2005 Beta2 Version<p>Regarding my first question:<br /><br />I already decompiled the CR code using Reflector and see where the error is. So, perhaps, you could help me to work around it.<br />The problem occurs in their method:</p> <p>internal static string get_RuntimeImageHandlerService()<br />{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return (ViewerGlobal.GetApplicationPath + "/CrystalImageHandler.aspx?dynamicimage=");<br />}</p> <p>While it works fine for subwebs, it fails for web sites that run on the root. The&nbsp; GetApplicationPath returns "/" and then combined with the hardcoded string the resulting URL becomes "//CrystalImageHandler.aspx?...", which is interpreted by IE as a domain name. So, just one additional "if" statement is needed to account for double slash.</p> <p>So, my questions is, how can I substitute my code inside the CR assembly? Is there any way?</p> <p>Thanks.</p> <p>&nbsp;</p>Tue, 21 Jun 2005 14:20:32 Z2005-06-21T14:20:32Zhttp://social.msdn.microsoft.com/Forums/en-US/vscrystalreports/thread/8e318a9f-a846-49bf-bba2-662baf0ef251#ae77a63b-f5c2-4585-aea4-335fd5549104http://social.msdn.microsoft.com/Forums/en-US/vscrystalreports/thread/8e318a9f-a846-49bf-bba2-662baf0ef251#ae77a63b-f5c2-4585-aea4-335fd5549104Francis4370201http://social.msdn.microsoft.com/Profile/en-US/?user=Francis4370201Charts are not rendered in CR for VS2005 Beta2 VersionHave you tried adding this to the web.config in your root web?&nbsp; Crystal Reports registers&nbsp;the CrystalImageHandler.aspx&nbsp;IHttpHandler when you drag and drop your webform viewer to the webform:<br /><br />&nbsp;&nbsp;&lt;httpHandlers&gt;<br />&nbsp;&nbsp; &lt;add path="CrystalImageHandler.aspx" verb="GET" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" /&gt;<br />&nbsp; &lt;/httpHandlers&gt;<br />&nbsp;&lt;/system.web&gt;<br />&lt;/configuration&gt;<br /><br />Just curious: did you create the .aspx using a text editor, or did you not copy the web.config to your root?<br />Thu, 23 Jun 2005 17:24:12 Z2005-06-23T17:24:12Zhttp://social.msdn.microsoft.com/Forums/en-US/vscrystalreports/thread/8e318a9f-a846-49bf-bba2-662baf0ef251#12d48140-f742-4487-bf95-c667482566a7http://social.msdn.microsoft.com/Forums/en-US/vscrystalreports/thread/8e318a9f-a846-49bf-bba2-662baf0ef251#12d48140-f742-4487-bf95-c667482566a7gzingerhttp://social.msdn.microsoft.com/Profile/en-US/?user=gzingerCharts are not rendered in CR for VS2005 Beta2 Version<span style="FONT-SIZE: 9.5pt; COLOR: black; FONT-FAMILY: Verdana; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA">Yes, that was the answer to my first question. I figured it out myself&nbsp;pretty&nbsp;quickly - sorry didn't post it back to the thread. Thank you anyway.<br /><br />However, the second question remains. When a web site runs on the root (not subweb)&nbsp;the URL for the images that CR produces is incorrect - it's a bug in their implementation (a guy from MSFT confirmed that fact) - see my second posting on this thread&nbsp;for more info.<br /><br />So, my question becomes either a) How can I fix somebody else’s bug (CR in this case)? or b) When will the crystals fix it themselves and provide me with an updated version?<br /><br />Any ideas are greatly appreciated.</span>Thu, 23 Jun 2005 17:36:59 Z2005-06-23T17:36:59Zhttp://social.msdn.microsoft.com/Forums/en-US/vscrystalreports/thread/8e318a9f-a846-49bf-bba2-662baf0ef251#5c4f40a7-fb6f-4138-9478-523e1f4c54e9http://social.msdn.microsoft.com/Forums/en-US/vscrystalreports/thread/8e318a9f-a846-49bf-bba2-662baf0ef251#5c4f40a7-fb6f-4138-9478-523e1f4c54e9Keith Thomsonhttp://social.msdn.microsoft.com/Profile/en-US/?user=Keith%20ThomsonCharts are not rendered in CR for VS2005 Beta2 VersionWe will investigate on our end and fix it if we confirm that it is our bug.<br /><br />Thanks!<br />Keith - Business ObjectsThu, 23 Jun 2005 22:55:32 Z2005-06-23T22:55:32Zhttp://social.msdn.microsoft.com/Forums/en-US/vscrystalreports/thread/8e318a9f-a846-49bf-bba2-662baf0ef251#d4291354-b07f-4661-a943-ae9b723dbfb1http://social.msdn.microsoft.com/Forums/en-US/vscrystalreports/thread/8e318a9f-a846-49bf-bba2-662baf0ef251#d4291354-b07f-4661-a943-ae9b723dbfb1gzingerhttp://social.msdn.microsoft.com/Profile/en-US/?user=gzingerCharts are not rendered in CR for VS2005 Beta2 VersionThanks for the reply. Any idea of the timeline?Fri, 24 Jun 2005 00:06:07 Z2005-06-24T00:06:07Zhttp://social.msdn.microsoft.com/Forums/en-US/vscrystalreports/thread/8e318a9f-a846-49bf-bba2-662baf0ef251#a8e4b348-26da-4a83-aa41-a57d2e888c48http://social.msdn.microsoft.com/Forums/en-US/vscrystalreports/thread/8e318a9f-a846-49bf-bba2-662baf0ef251#a8e4b348-26da-4a83-aa41-a57d2e888c48Keith Thomsonhttp://social.msdn.microsoft.com/Profile/en-US/?user=Keith%20ThomsonCharts are not rendered in CR for VS2005 Beta2 VersionI'll try to update you when I hear back, but at this time they are investigating and&nbsp;a timeline&nbsp;will depend on what they find.<br /><br />Keith - Business ObjectsTue, 28 Jun 2005 17:21:04 Z2005-06-28T17:21:04Zhttp://social.msdn.microsoft.com/Forums/en-US/vscrystalreports/thread/8e318a9f-a846-49bf-bba2-662baf0ef251#5c5a3803-fb86-44dc-9d3a-d8d49499cb31http://social.msdn.microsoft.com/Forums/en-US/vscrystalreports/thread/8e318a9f-a846-49bf-bba2-662baf0ef251#5c5a3803-fb86-44dc-9d3a-d8d49499cb31StephenBarclayhttp://social.msdn.microsoft.com/Profile/en-US/?user=StephenBarclayCharts are not rendered in CR for VS2005 Beta2 VersionKeith,<br /><br />We are having this problem also..&nbsp; Any updates on the timeline?<br /><br />StephenSun, 17 Jul 2005 01:24:46 Z2005-07-17T01:24:46Zhttp://social.msdn.microsoft.com/Forums/en-US/vscrystalreports/thread/8e318a9f-a846-49bf-bba2-662baf0ef251#b16d55e8-1b90-4a25-99ee-8e7e93c5f2ebhttp://social.msdn.microsoft.com/Forums/en-US/vscrystalreports/thread/8e318a9f-a846-49bf-bba2-662baf0ef251#b16d55e8-1b90-4a25-99ee-8e7e93c5f2ebAllan Pumphreyhttp://social.msdn.microsoft.com/Profile/en-US/?user=Allan%20PumphreyCharts are not rendered in CR for VS2005 Beta2 Version<p>We had the same problem and traced it to our web.config missing the following:<br /><br />&nbsp;&nbsp;&lt;xhtmlConformance mode="Legacy"/&gt;&lt;httpHandlers&gt;&lt;add verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/&gt;&lt;/httpHandlers&gt;<br /><br />Just insert this line above the&nbsp;&lt;/system.web&gt;<br /><br /><br /></p>Wed, 19 Oct 2005 04:05:08 Z2005-10-19T04:05:08Zhttp://social.msdn.microsoft.com/Forums/en-US/vscrystalreports/thread/8e318a9f-a846-49bf-bba2-662baf0ef251#9f7c4084-bacf-4c0d-a8b5-03e677befcc2http://social.msdn.microsoft.com/Forums/en-US/vscrystalreports/thread/8e318a9f-a846-49bf-bba2-662baf0ef251#9f7c4084-bacf-4c0d-a8b5-03e677befcc2Ramesh Kasavarajuhttp://social.msdn.microsoft.com/Profile/en-US/?user=Ramesh%20KasavarajuCharts are not rendered in CR for VS2005 Beta2 VersionIs there a resolution for this problem now ? I am in the same situation as gzinger<br />Sat, 12 Nov 2005 08:39:03 Z2005-11-12T08:39:03Zhttp://social.msdn.microsoft.com/Forums/en-US/vscrystalreports/thread/8e318a9f-a846-49bf-bba2-662baf0ef251#c45d9368-47aa-4827-af87-eea3e17d8551http://social.msdn.microsoft.com/Forums/en-US/vscrystalreports/thread/8e318a9f-a846-49bf-bba2-662baf0ef251#c45d9368-47aa-4827-af87-eea3e17d8551gzingerhttp://social.msdn.microsoft.com/Profile/en-US/?user=gzingerCharts are not rendered in CR for VS2005 Beta2 VersionRelease version apperently fixes the issue. I had to reinstall CR .msi block and restart the server on uninstall and reinstall for it to kick in.<br /><br />Thanks.Thu, 01 Dec 2005 16:49:35 Z2005-12-01T16:49:35Zhttp://social.msdn.microsoft.com/Forums/en-US/vscrystalreports/thread/8e318a9f-a846-49bf-bba2-662baf0ef251#6a98a8c2-8b15-4efc-b82d-0149b3fa435dhttp://social.msdn.microsoft.com/Forums/en-US/vscrystalreports/thread/8e318a9f-a846-49bf-bba2-662baf0ef251#6a98a8c2-8b15-4efc-b82d-0149b3fa435dBonquest Technologieshttp://social.msdn.microsoft.com/Profile/en-US/?user=Bonquest%20TechnologiesCharts are not rendered in CR for VS2005 Beta2 VersionWell nice said, but for me my client is still. coz on the dev platform all ok. where do i get the install CR, i got Visual studio 2003 and Visual Studio 2005 Express Edition. i tried this -- http://support.businessobjects.com/communitycs/technicalpapers/crnet_deployment.pdf -- nad i get it, but how do i add on the production server. I have full crystal Reports with my Office and VS  2003. SOS.Fri, 16 Jun 2006 19:21:38 Z2006-06-16T19:21:38Z