I get this error when pushing our website to our clients production server however the page works absolutely fine on their dev / test servers. What causes this error (considering I am not using any web resources myself, though I am using the asp.net ajax toolkit).
feedback
|
|
Can you get a full stack trace on this error? There will be one in the server event log (system or application, can't remember which)? There are various parts of ASP.NET that use script resources, and at least two slightly obscure causes of them failing with this sort of error I can think of. 1 - believe it or not, if your dlls have embedded resources in them, and they are dated in the future this will happen (if you ever compile dlls in the UK and then immediately deploy them to US web servers you'll be well aware of this issue!). I can't remember the event log error this shows, but would know if I saw it - and it is not immediately obvious. 2 - if you have a load balancer routing requests between multiple servers without being "sticky", and your servers have different machine keys, then the request will fail because the encrypted querystring identifying the resource will not be decryptable on another server. This will cause a stack trace that includes various crypto types in it. There are lots of other causes (such as incorrect uris, or querystrings getting corrupted as mentioned above), but having a full stack trace will help here. | |||||||||
feedback
|
|
I used to get this annoying error all the time. Users are indeed affected by this error. We used to get complaints of pages not loading properly. After trying many things like adding | |||||||||
feedback
|
|
The error in the end was due to some URL re-writing that was occuring the server to which the admins hadn't told us about.! Watch out for that one | |||||
feedback
|
|
You can check the urls which were generating this error. Web resources (used by the Ajax Toolkit) rely on a query string argument. If that argument is altered in some way (perhaps by some malicious user) the HTTP handler will throw exception that it cannot find the requested web resource. | |||
|
feedback
|
|
If indeed you are using multiple servers try the following: Add to your web.config:
But generate the validationKey and decryptionKey yourself using the code examples found here: http://msdn.microsoft.com/en-us/library/ms998288.aspx The above link also explains more about this solution so check it out, look for Web Farm Deployment Considerations on that page | |||
|
feedback
|