Hi Anand,
That’s unfortunate news for me, as I cannot upgrade at this moment due to the high cost of the dollar in my country, with the exchange rate being 6 to 1, making it too expensive.
However, I found a solution to my issue.
I wanted to share this solution in case it helps others:
In the
web.config
file, within the
<handlers>
section, there is a line with
<add verb="*" path="*.ar12" ...
. This line includes a version value. I simply removed the version and left the relevant part as:
<add verb="*" path="*.ar12" type="GrapeCity.ActiveReports.Web.Handlers.ReportBinariesStreamer, GrapeCity.ActiveReports.Web.v12" name="AR_ReportBinariesStreamer" resourceType="Unspecified" preCondition="integratedMode"/>
Additionally, I removed the
ExtensionlessUrlHandler-Integrated-4.0
handler with:
<remove name="ExtensionlessUrlHandler-Integrated-4.0"/>
Here is the example:
Before changes:
<system.webServer>
<handlers>
<add verb="*" path="*.ar12" type="GrapeCity.ActiveReports.Web.Handlers.ReportBinariesStreamer, GrapeCity.ActiveReports.Web.v12, Version=12.2.13986.0, Culture=neutral, PublicKeyToken=cc4967777c49a3ff" name="AR_ReportBinariesStreamer" resourceType="Unspecified" preCondition="integratedMode"/>
<add name="WebResourceHandler" path="WebResource.axd" verb="GET" type="System.Web.Handlers.AssemblyResourceLoader"/>
<add name="MvcHttpHandler" preCondition="integratedMode" verb="*" path="*.mvc" type="System.Web.Mvc.MvcHttpHandler, System.Web.Mvc, Version=5.2.7.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0"/>
</handlers>
</system.webServer>
After changes:
<system.webServer>
<handlers>
<add verb="*" path="*.ar12" type="GrapeCity.ActiveReports.Web.Handlers.ReportBinariesStreamer, GrapeCity.ActiveReports.Web.v12" name="AR_ReportBinariesStreamer" resourceType="Unspecified" preCondition="integratedMode"/>
<add name="WebResourceHandler" path="WebResource.axd" verb="GET" type="System.Web.Handlers.AssemblyResourceLoader"/>
<add name="MvcHttpHandler" preCondition="integratedMode" verb="*" path="*.mvc" type="System.Web.Mvc.MvcHttpHandler, System.Web.Mvc, Version=5.2.7.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<remove name="ExtensionlessUrlHandler-Integrated-4.0"/>
</handlers>
</system.webServer>
That’s works for me
I hope this helps!
Regards,
Marcelo