In our ASP.NET MVC application, we've noticed that we cannot have The Forbidden DOS File Names—COM1 through COM9, LPT1 through LPT9, CON, AUX, PRN, and NUL—anywhere in our routes. They inevitably result in IIS telling us the file cannot be found, even when we set routing not to check for the existence of files first. How can we work around this?
|
|
|||||||||||||||||||
|
|
This has been addressed in ASP.NET 4. http://haacked.com/archive/2010/04/29/allowing-reserved-filenames-in-URLs.aspx You can apply a setting in web.config that relaxes this restriction.
Hope that helps. |
|||
|
Since asking the question, I've found that the bug is in ASP.NET proper, not IIS or ASP.NET MVC, meaning that there's no way to work around it. The only solution is to manually forbid URLs matching these names and these names followed by a period and random characters. |
|||||
|
|
For a similar reason, there can't be a http://stackoverflow.uservoice.com/pages/1722-general/suggestions/98871-web-config-tag-404-error |
|||
|
|
|
for another similar reason you can't have urls with a dot and a slash http://stackoverflow.com/questions/294495/semantic-urls-with-dots-in-net |
|||
|
|