WebResource.axd throwing exceptions in web farm

前端 未结 2 1444
谎友^
谎友^ 2021-01-16 15:17

We have an array of about 12 servers serving a website. Over the past few hours, one single server has started throwing exceptions for WebResource.axd and ScriptResource.axd

2条回答
  •  情话喂你
    2021-01-16 15:40

    Found the root cause of the problem. The problem server had a security patch applied which updated System.Web.dll. For some reason our hosting provider didn't update any of the other dll's and in turn this server was generating different encryption keys to the others.

    To work out which dll was affected, I used the following to decrypt the webresource.axd query string parameters:

    http://blogs.telerik.com/aspnet-ajax/posts/07-03-27/debugging-asp-net-2-0-web-resources-decrypting-the-url-and-getting-the-resource-name.aspx

提交回复
热议问题