CR's MOST WANTED/HIDDEN/ARCHIVE/READONLY FILE: CrystalImageHandler.aspx in VS 2005 RC1
I wish to thank anybody who is successful or made daring attempts in finding this file in VS 2005 RC1. Images are not working. I create a Viewers vdir in IIS to point Crystalwebformviewer3 and understandably the aspx has gone missing from the vdir.
Did anybody come across the aspx file ?
Thank you
[310 byte] By [
SivaS] at [2007-12-17]
CR for VS 2005 no longer needs a *.aspx file to be installed. Instead, we use an HttpHandler mapping in the web.config file:
<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>
How did you get into a state where this mapping was not automatically added to your web.config file? If you opened your old project in VS 2005, our design-time project migration logic should have added that for you.
Thanks,
Francis
I have the same problem.
I cannot view the chart in online crystal report. only a "X" show.
I checked that web.config, it contain the <httpHandlers> you mentioned.
My page is in <authentication mode="Windows"/>.
The Chart can be view if I run the page in debug mode through VS2005.
but If I just access in my web-browser, the chart image doesn't show.(these's no problem in showing the report's viewer icons image), however I can export the report correctly to the pdf format throught the web-browser.
CrystalDecisions.Web, Version=10.2.3600.0
ASP.NET 2.0, C# Web Application
.net Framework v2.0.50727
VS 2005 Professional Edition.
What's wrong?
my problem get "solved".
permission problem
add this to <system.web>
<identity impersonate="true" userName="vailduser" password="validpassword" />
the user I use having admin permission right...
however, I' think this is too risk to give out the admin permission right in web application.