The WebResource.axd handler must be registered in the configuration to process this request.
I have a clean server that I am trying to install 4.5.1 on. I've unblocked the zip, and repaired my .net 4.0, but I am still getting this error on my server:
The WebResource.axd handler must be registered in the configuration to process this request.<br><br><!-- Web.Config Configuration File --><br><br><configuration><br> <system.web><br> <httpHandlers><br> <add path="WebResource.axd" verb="GET" type="System.Web.Handlers.AssemblyResourceLoader" validate="True" /><br> </httpHandlers><br> </system.web><br></configuration>
body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;}
p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px}
b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px}
H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }
H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }
pre {font-family:"Lucida Console";font-size: .9em}
.marker {font-weight: bold; color: black;text-decoration: none;}
.version {color: gray;}
.error {margin-bottom: 10px;}
.expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; }
Server Error in '/' Application.
The WebResource.axd handler must be registered in the configuration to
process this request.
Description:
An unhandled exception occurred during the execution of the current web
request. Please review the stack trace for more information about the error and
where it originated in the code.
Exception Details:
System.InvalidOperationException: The WebResource.axd handler must be
registered in the configuration to process this request.
Line 53:
Line 54: function InstallPackages(button, elementId) {
Line 55: var next = document.getElementById('<%= next.ClientID %>');
Line 56: next.style.display = "none";
Line 57:
I'm going to answer my own question here. We had a wildcard mapping on our IIS, and it was causing some conflicts. Not exactly sure how to keep the wildcard mapping in though. Any further follow up on that would be appreciated.
The WebResource.axd handler must be registered in the configuration to process this request.
I have a clean server that I am trying to install 4.5.1 on. I've unblocked the zip, and repaired my .net 4.0, but I am still getting this error on my server:
The WebResource.axd handler must be registered in the configuration to process this request.<br><br><!-- Web.Config Configuration File --><br><br><configuration><br> <system.web><br> <httpHandlers><br> <add path="WebResource.axd" verb="GET" type="System.Web.Handlers.AssemblyResourceLoader" validate="True" /><br> </httpHandlers><br> </system.web><br></configuration> body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;} p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px} b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px} H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red } H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon } pre {font-family:"Lucida Console";font-size: .9em} .marker {font-weight: bold; color: black;text-decoration: none;} .version {color: gray;} .error {margin-bottom: 10px;} .expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; }
Server Error in '/' Application.
The WebResource.axd handler must be registered in the configuration to process this request.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<httpHandlers>
<add path="WebResource.axd" verb="GET" type="System.Web.Handlers.AssemblyResourceLoader" validate="True" />
</httpHandlers>
</system.web>
</configuration>
Exception Details: System.InvalidOperationException: The WebResource.axd handler must be registered in the configuration to process this request.
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<httpHandlers>
<add path="WebResource.axd" verb="GET" type="System.Web.Handlers.AssemblyResourceLoader" validate="True" />
</httpHandlers>
</system.web>
</configuration>
Source Error:
Line 53: Line 54: function InstallPackages(button, elementId) { Line 55: var next = document.getElementById('<%= next.ClientID %>'); Line 56: next.style.display = "none"; Line 57:
Source File: c:\inetpub\wwwroot\development\install\default.aspx Line: 55
Stack Trace:
Any help is appreciated.
I'm going to answer my own question here. We had a wildcard mapping on our IIS, and it was causing some conflicts. Not exactly sure how to keep the wildcard mapping in though. Any further follow up on that would be appreciated.
SIgh. I've just completed a major site update and now I'm seeing this very problem. I can not replicate it in my local dev environment nor on my remote dev environment. Thanks to this post, here: http://www.google.com/url?sa=t&source=web&cd=1&ved=0CBQQFjAA&url=http%3A%2F%2Fforums.asp.net%2Ft%2F1155043.aspx%2F1%3FWebResource%2Baxd%2BError%2Bquot%2Bhandler%2Bmust%2Bbe%2Bregistered%2Bquot%2B&ei=_MhvTaiUFISXtwfK6_z8Dg&usg=AFQjCNHuqmDPyGxRCfm4HtnKgtNMgqtXJg&sig2=rCuQKf63N1ODpTzTCSzJxg I've learned I can run in "classic" or "compatible" mode until I get this issue resolve.
Any ideas, anyone?
is working on a reply...