I've just finished reading URL vs. URI vs. URN, in More Concise Terms, and it's really helped understand the distinction between the three terms. Since then I've skimmed the RFC2141 and RFC2616 specs and Microsoft's Response.Redirect Method documentation in an effort to answer the following question confidently.

Given this line of code:

Response.Redirect("~/Foo.aspx");

And this resulting HTTP response (trimmed for context):

Status=Found - 302 Date=Wed, 24 Nov
2010 17:27:58 GMT
Server=Microsoft-IIS/6.0
X-Powered-By=ASP.NET
X-AspNet-Version=2.0.50727
Location=/MyWebApp/Foo.aspx

What name(s) most properly describes what has been placed into the "Location" header?

URL? URI? URN? URC? Which is it?

link|improve this question

feedback

5 Answers

up vote 2 down vote accepted

It's a relative URI.

It's also a URL since it can be used in this context to locate the resource as well as identifying it, but really there's little value in talking about URLs these days - the distinction is more a matter of what you're doing with it than what it is in itself, and a URL is always a URI.

link|improve this answer
But doesn't the location address fail the URL test of being derefrence-able? /MyWebApp/Foo.aspx provides no information about where the resource can be found on a network... – Evan Nov 24 '10 at 17:53
1  
It's a relative reference. That along with other information (the URI used to get the response) allows the creation of an absolute URI that is both a global identifier (no other resource in the world has the same URI) and dereferencable. – Jon Hanna Nov 24 '10 at 17:59
@John Doesn't that make the location not a URL but a URN? – Evan Nov 24 '10 at 20:45
@Evan How? I don't follow your argument. – Jon Hanna Nov 25 '10 at 12:32
@John "That along with other information." The value "/MyWebApp/Foo.aspx" must be combined with other information to create a global identifier - a URL - therefore, the value "/MyWebApp/Foo.aspx" qualifies only as a URN but not a URL. – Evan Dec 1 '10 at 20:18
show 2 more comments
feedback

It's a tricky question. On its own (as a string) Location is a URI, but you have to take into account the context in which it is defined (that being the response header list) In essence a tuple (browser::request::protocol, browser::request::domain, response::locationHeader) constitutes a URL as request adds a retrieval mechanism.

link|improve this answer
feedback

~/ is resolved to /MyWebApp/Foo.aspx, which doesn't declare the mechanism involved being HTTP; all it declares is the location that is being redirected to - which makes it a URL, though it's not explicitly stating http:// in there.

link|improve this answer
feedback

The URL in the Location header property is a root-relative URL. The ~/ specifies that the URL being created with ~/foo.aspx should be root-relative to the application directory in IIS.

link|improve this answer
feedback

It is an Url since the resolution of ~/ provides both the location and the mechanism ("http") to find the resource, however, the header value Location is designed to take an Uri.

Header Field Definitions

link|improve this answer
1  
But, I'm asking what to name the value that's in the header, without concern about how/where that value was created. The value that's in the header doesn't provide the location, or the mechanism. If the location and mechanism are things I want to observe in something I call a "URL", and those things aren't in the "Location" header, what do we call the value that appears in the header? – lance Nov 24 '10 at 17:46
@lance - Amended my response. It is an Uri. – Thomas Nov 24 '10 at 17:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.