Hi,
Must be a tiresome topic, since there are lots of post about this, but still i didnt manage to make it work.
i run IIS 7.5 under Windows Server 2008 R2. and i simply want to show some charts on a simple website.
instead of a chart i always can see the message:
"The Chart http handler is not registered. Please, manually add the following line to your Web.config httpHandlers section:
<add path="ChartImage.axd" verb="*" type="Telerik.Web.UI.ChartHttpHandler, Telerik.Web.UI, Version=2010.3.1317.40, Culture=neutral, PublicKeyToken=121fae78165ba3d4" validate="false" />"
i read here about how i should register the handler:
http://www.telerik.com/help/aspnet-ajax/introduction-troubleshooting.html
i also read here:
http://www.telerik.com/help/aspnet-ajax/introduction-registering-the-httphandlers-on-windows-vista-iis-7-integrated-mode.html
i tried to use the classic mode (pipline) instead of integrated, but then i get either an Error 500 or 404.
the library "Telerik.Web.UI.dll" is in the bin folder of the web application.
if you wanna make me really happy, please tell me what i have to write into my Web.Config.
my current Web.Config:
Must be a tiresome topic, since there are lots of post about this, but still i didnt manage to make it work.
i run IIS 7.5 under Windows Server 2008 R2. and i simply want to show some charts on a simple website.
instead of a chart i always can see the message:
"The Chart http handler is not registered. Please, manually add the following line to your Web.config httpHandlers section:
<add path="ChartImage.axd" verb="*" type="Telerik.Web.UI.ChartHttpHandler, Telerik.Web.UI, Version=2010.3.1317.40, Culture=neutral, PublicKeyToken=121fae78165ba3d4" validate="false" />"
i read here about how i should register the handler:
http://www.telerik.com/help/aspnet-ajax/introduction-troubleshooting.html
i also read here:
http://www.telerik.com/help/aspnet-ajax/introduction-registering-the-httphandlers-on-windows-vista-iis-7-integrated-mode.html
i tried to use the classic mode (pipline) instead of integrated, but then i get either an Error 500 or 404.
the library "Telerik.Web.UI.dll" is in the bin folder of the web application.
if you wanna make me really happy, please tell me what i have to write into my Web.Config.
my current Web.Config:
<?xml version="1.0" encoding="UTF-8"?><configuration> <connectionStrings> <-- some connection strings --> </connectionStrings> <appSettings> <-- some settings --> </appSettings> <system.web> <compilation debug="false" targetFramework="4.0"> <assemblies> <add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" /> <add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" /> <add assembly="System.Speech, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> </assemblies> </compilation> <customErrors mode="Off" defaultRedirect="Error.aspx"> <error statusCode="404" redirect="/NotFound.aspx" /> </customErrors> </system.web> <system.webServer> <modules runAllManagedModulesForAllRequests="true" /> <handlers> <add name="Telerik.Web.UI.WebResource" path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI" /> <add name="ChartImage.axd" path="ChartImage.axd" verb="*" type="Telerik.Web.UI.ChartHttpHandler, Telerik.Web.UI" /> </handlers> <validation validateIntegratedModeConfiguration="false" /> </system.webServer> <system.web.extensions> <scripting> <webServices> <jsonSerialization maxJsonLength="999999999" /> </webServices> </scripting> </system.web.extensions></configuration>