Tuesday, May 29, 2012

Making Crystal Report 11 to work in IIS

For Crystal Report 11 to work in IIS, you might have to ensure that the web.config file contains the following entries:

<httpHandlers>
  <add path="CrystalImageHandler.aspx" 
    verb="GET" 
    type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=13.0.2000.0" />      
</httpHandlers>

<system.webServer>
<handlers>
  <add name="CrystalImageHandler.aspx_GET" 
    verb="GET" 
    path="CrystalImageHandler.aspx" 
    type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=13.0.2000.0" 
    preCondition="integratedMode" />
  </handlers>
</system.webServer>