"The resource cannot be found." error when there is a "dot" at the end of the url - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T15:22:08Z http://stackoverflow.com/feeds/question/429963 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/429963/the-resource-cannot-be-found-error-when-there-is-a-dot-at-the-end-of-the-url 1 "The resource cannot be found." error when there is a "dot" at the end of the url unknown (yahoo) 2009-01-09T22:21:37Z 2009-03-31T17:12:26Z <p>Hi,</p> <p>I'm using ASP .NET MVC Beta and I get the HTTP 404 (The resource cannot be found) error when I use this url which has a "dot" at the end:</p> <p><a href="http://localhost:81/Title/Edit/Code1" rel="nofollow">http://localhost:81/Title/Edit/Code1</a>.</p> <p>If I remove the dot at the end or the dot is somewhere in the middle I don't get the error.</p> <p>I tried to debug but it I get the error from "System.Web.CachedPathData.GetConfigPathData(String configPath)" before ProcessRequest in MvcHandler.</p> <p>Is "dot" not allowed at the end of a url? Or is there a way to fix the route definition to handle this url?</p> <p>Thanks in advance </p> http://stackoverflow.com/questions/429963/the-resource-cannot-be-found-error-when-there-is-a-dot-at-the-end-of-the-url/430637#430637 2 Answer by John Sheehan for "The resource cannot be found." error when there is a "dot" at the end of the url John Sheehan 2009-01-10T05:54:47Z 2009-01-10T05:54:47Z <p>I can't even imagine a situation in which you would even want this, but I'm pretty sure that's not supported by any web server or web framework. Why do you want to do something so non-standard?</p> http://stackoverflow.com/questions/429963/the-resource-cannot-be-found-error-when-there-is-a-dot-at-the-end-of-the-url/431108#431108 0 Answer by unknown (yahoo) for "The resource cannot be found." error when there is a "dot" at the end of the url unknown (yahoo) 2009-01-10T15:24:00Z 2009-01-10T15:24:00Z <p>For an example: I have a table named Detail1 [Id(integer), Code(string), Description(string)] which has FK relationship with Master1 through it's Id column. Whenever I select a record of Master1, I also select it's Detail1 record to get it's Code field. In order to not to make this join everytime (since usually there isn't only one detail, there are more than one) I choose not to use Id column and I make Code PK of Detail1.</p> <p>But when I get rid of Id and use Code as PK then my routes also start to work with Code field, like: Detail1\Edit\Code1</p> <p>This Code can have anything in it or at the end, including DOT. There are cases where I can prohibit a DOT at the end but sometimes it's really meaningfull.</p> <p>And I'have also seen this <a href="http://weblogs.asp.net/scottgu/archive/2008/04/16/asp-net-mvc-source-refresh-preview.aspx" rel="nofollow">post</a> that routes can be very flexible, so I didn't think mine is so weird.</p> <p>So that's why I do something so non-standard. Any suggestions?</p> <p>And also why it's so weird to have a DOT at the end of a url?</p> http://stackoverflow.com/questions/429963/the-resource-cannot-be-found-error-when-there-is-a-dot-at-the-end-of-the-url/431158#431158 2 Answer by recursive for "The resource cannot be found." error when there is a "dot" at the end of the url recursive 2009-01-10T15:48:46Z 2009-01-10T15:48:46Z <p>Perhaps <code>http://localhost:81/Title/Edit/Code1%2E</code> would work.</p> <p>I escaped the period with a hex ascii code.</p> http://stackoverflow.com/questions/429963/the-resource-cannot-be-found-error-when-there-is-a-dot-at-the-end-of-the-url/431334#431334 1 Answer by annakata for "The resource cannot be found." error when there is a "dot" at the end of the url annakata 2009-01-10T17:04:14Z 2009-01-10T17:04:14Z <p>Why can't you have a dot-terminated URI?</p> <p>Because a URI is a resource request and a <a href="http://en.wikipedia.org/wiki/Filename_extension#Historical_limitations" rel="nofollow">historical imperitive</a> exists on all relevant operating systems that the dot character is the <a href="http://en.wikipedia.org/wiki/Filename" rel="nofollow">extension separator</a>. The last dot is treated as denoting a file extension, hence dot-terminating will make no sense.</p> <p>Also worth reading:</p> <ul> <li><a href="http://www.ietf.org/rfc/rfc1738" rel="nofollow">RFC1738</a></li> <li><a href="http://www.ietf.org/rfc/rfc3986" rel="nofollow">RFC3986</a></li> </ul> http://stackoverflow.com/questions/429963/the-resource-cannot-be-found-error-when-there-is-a-dot-at-the-end-of-the-url/431950#431950 0 Answer by unknown (yahoo) for "The resource cannot be found." error when there is a "dot" at the end of the url unknown (yahoo) 2009-01-10T23:19:03Z 2009-01-10T23:19:03Z <p>Thanks for the explanation.</p> http://stackoverflow.com/questions/429963/the-resource-cannot-be-found-error-when-there-is-a-dot-at-the-end-of-the-url/482867#482867 0 Answer by for "The resource cannot be found." error when there is a "dot" at the end of the url 2009-01-27T10:16:53Z 2009-01-27T10:16:53Z <p>here's an example where it works: <a href="http://www.last.fm/music/M.I.A." rel="nofollow">http://www.last.fm/music/M.I.A.</a> Sorry, can't actually offer any help on it, actually stuck on this problem myself...</p> http://stackoverflow.com/questions/429963/the-resource-cannot-be-found-error-when-there-is-a-dot-at-the-end-of-the-url/676944#676944 0 Answer by Eleasar for "The resource cannot be found." error when there is a "dot" at the end of the url Eleasar 2009-03-24T11:12:51Z 2009-03-24T11:12:51Z <p>I would also be interested in this. And yes - also stumble upon last.fm where it works (e.g. R.E.M.) but found no hints for asp.net how to do it there. </p> <p>Anyone solved that problem?</p> http://stackoverflow.com/questions/429963/the-resource-cannot-be-found-error-when-there-is-a-dot-at-the-end-of-the-url/702081#702081 0 Answer by Nissan for "The resource cannot be found." error when there is a "dot" at the end of the url Nissan 2009-03-31T17:12:26Z 2009-03-31T17:12:26Z <p>I went into IIS and put the 404 error page to route to my custom Error Controller, with the plan of using the ReferrerURL parameter to get the URL that generated the error, sanitise the URL by removing the period (.) and then re-route it appropriately to the proper controller.</p> <p>This does not work though, since when the 404 is generated, the header information has a null ReferrerURL, in fact, I went through all the Request parameters and there is nothing that can indicate what URL generated the 404 error, only that the error was generated.</p> <p>Anyone had better luck on this?</p>