Hi,
Since I upgraded my solution to ASP.NET 4 (webforms) and to Telerik RadControls 2010.1.519.40, I keep getting the following exception every time there is a new request to the server:
And here is how my web.config looks like just in case it can help:
Is anyone experiencing the same problem? Any help will be greatly appreciated!
Eric
Since I upgraded my solution to ASP.NET 4 (webforms) and to Telerik RadControls 2010.1.519.40, I keep getting the following exception every time there is a new request to the server:
| Exception ID: 0 |
| From: System.Web |
| Time of Error: 6/23/2010 6:42:06 PM |
| Exception Type: System.Web.HttpException |
| Exception Message: This is an invalid webresource request. |
| Exception Source: System.Web |
| Source: Path :/WebResource.axd - Raw Url :/WebResource.axd?d=ajTmsUGo059i8jVyULN6WJxyGEzDWeYyk5iXrJ-hlCbfDyKpxWCzGgr__HcHehjE45vAS9-jMMZQxEhj5WlSgsmmlvC8804M8q7f1ZWxcrM4ODuYtuHJilKNWiCjODeP0&t=634129147086009932 |
| Stack Trace: at System.Web.Handlers.AssemblyResourceLoader.System.Web.IHttpHandler.ProcessRequest(HttpContext context) |
| at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() |
| at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) |
And here is how my web.config looks like just in case it can help:
| <?xml version="1.0"?> |
| <configuration> |
| <appSettings> |
| <add key="Telerik.ScriptManager.TelerikCdn" value="Enabled" /> |
| <add key="Telerik.StyleSheetManager.TelerikCdn" value="Enabled" /> |
| </appSettings> |
| <system.web> |
| <compilation debug="true" targetFramework="4.0" /> |
| <customErrors mode="Off" /> |
| <sessionState compressionEnabled="true"></sessionState> |
| <httpRuntime maxRequestLength="2097151" /> |
| <pages maintainScrollPositionOnPostBack="true" controlRenderingCompatibilityVersion="4.0" clientIDMode="AutoID"> |
| </pages> |
| <httpHandlers> |
| <add path="ChartImage.axd" type="Telerik.Web.UI.ChartHttpHandler" verb="*" validate="false" /> |
| <add path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler" verb="*" validate="false" /> |
| <add path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" verb="*" validate="false" /> |
| <add path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler" verb="*" validate="false" /> |
| <add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false" /> |
| </httpHandlers> |
| <httpModules> |
| <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule" /> |
| <add name="RadCompression" type="Telerik.Web.UI.RadCompression" /> |
| </httpModules> |
| </system.web> |
| <system.webServer> |
| <modules runAllManagedModulesForAllRequests="true"> |
| <remove name="RadUploadModule" /> |
| <remove name="RadCompression" /> |
| <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule" preCondition="integratedMode" /> |
| <add name="RadCompression" type="Telerik.Web.UI.RadCompression" preCondition="integratedMode" /> |
| </modules> |
| <validation validateIntegratedModeConfiguration="false" /> |
| <handlers> |
| <remove name="ChartImage_axd" /> |
| <remove name="Telerik_Web_UI_SpellCheckHandler_axd" /> |
| <remove name="Telerik_Web_UI_DialogHandler_aspx" /> |
| <remove name="Telerik_RadUploadProgressHandler_ashx" /> |
| <remove name="Telerik_Web_UI_WebResource_axd" /> |
| <add name="ChartImage_axd" path="ChartImage.axd" type="Telerik.Web.UI.ChartHttpHandler" verb="*" preCondition="integratedMode" /> |
| <add name="Telerik_Web_UI_SpellCheckHandler_axd" path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler" verb="*" preCondition="integratedMode" /> |
| <add name="Telerik_Web_UI_DialogHandler_aspx" path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" verb="*" preCondition="integratedMode" /> |
| <add name="Telerik_RadUploadProgressHandler_ashx" path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler" verb="*" preCondition="integratedMode" /> |
| <add name="Telerik_Web_UI_WebResource_axd" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" preCondition="integratedMode" /> |
| </handlers> |
| <security> |
| <requestFiltering> |
| <requestLimits maxAllowedContentLength="2147482624" /> |
| </requestFiltering> |
| </security> |
| </system.webServer> |
| </configuration> |
Is anyone experiencing the same problem? Any help will be greatly appreciated!
Eric
