Why do all of my .axd files generate a 404 error when on our production server?
|
|
|||
|
|
|
You need to create a MIME type for that extension in IIS: To define a MIME type for a specific extension, follow these steps:
|
||||||
|
|
|
if you're on IIS7 make sure you add the handler to the
|
||
|
|
|
|
You can check the following:
|
||
|
|
|
|
Can you make a "bad" request that fails and then check the server's system and application event logs? There are several issues around axd that can cause 404s or 500s (such as the "time in the future" issue mentioned by Alex), but they leave a footprint in the event log. Have a look and post any log entries that mention axds. |
|||
|
|
|
|
We had error 500(it is not 404, but who knows) on our production server some time ago. No script resources were able to load. The problem was in the time difference between our development and production servers. It was -7 hours. .NET threw an exception because of it tried to use a "time in the future" of an assembly with embedded script resources. Decreasing |
||
|
|
