Home » IIS » 404.17 Status Code (The request is not supported 0x80070032)

404.17 Status Code (The request is not supported 0x80070032)

If an ASP.NET page displays 404 status code, check Failed Request Tracing logs to see substatus code. You may see substatus code 17 with this error message: The request is not supported (0x80070032)

SECURITY_DENIED_BY_MIMEMAP
MODULE_SET_RESPONSE_ERROR_STATUS
ModuleName: StaticFileModule
Notification: EXECUTE_REQUEST_HANDLER
HttpStatus: 404
HttpReason: Not Found
HttpSubStatus: 17
ErrorCode: The request is not supported (0x80070032)

404.17 Status Code (The request is not supported 0x80070032)

Solution for 404.17 The request is not supported error

This occurs when the ASP.NET handler is not installed or is not working. In this case, Static File handler runs instead and it fails because it’s a dynamic page.

You may try uninstalling and installing ASP.NET components in Server Manager but it’s unlikely to help with the issue.

Check application pool settings. In the server I troubleshot, the application pool was running with “No Managed Code” setting. After changing it to “.NET CLR Version v4.0”, the page started working.

Ned Sahin

Blogger for 20 years. Former Microsoft Engineer. Author of six books. I love creating helpful content and sharing with the world. Reach me out for any questions or feedback.
Categories IIS

Leave a Comment