Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

It is pretty clear that a web server has to decode any escaped unreserved character (such as alphanums, etc) to do the URI comparison. For example, [http://www.xyz.com/~user/index.htm] shall be identical to [http://www.xyz.com/%7Euser/index.htm]

My question is, what are we gonna do with the escaped reserved characters? An example would be "%2F", or '/'. If there is an "%2F" in the request URI, should the parser of web server replace it with a '/'? In the above example, it would mean that [http://www.xyz.com/~user%2Findex.htm] would be the same as [http://www.xyz.com/~user/index.htm] ? Although I tried it on an Apache server (2.2.17 Unix) and it looks like it gives a 404 Not Found error.

So does that mean "%2F" and other escaped reserved characters shall be left alone (at least before the URI comparison)?

Background Information:

There are two places in RFC 2616 (HTTP 1.1) mentioning the escape decoding issue:

The Request-URI is transmitted in the format specified in section 3.2.1. If the Request-URI is encoded using the “% HEX HEX” encoding [42], the origin server MUST decode the Request-URI in order to properly interpret the request. Servers SHOULD respond to invalid Request-URIs with an appropriate status code.

and

Characters other than those in the “reserved” and “unsafe” sets (see RFC 2396 [42]) are equivalent to their “"%" HEX HEX” encoding.

(according to http://trac.tools.ietf.org/wg/httpbis/trac/ticket/2 "unsafe" is a mistake and shall be removed from the spec. so we are only looking at "reserved" here)

FYI, the definition of such characters in RFC 2396:

reserved = ";" | "/" | "?" | ":" | "@" | "&" | "=" | "+" | "$" | ","

unreserved = alphanum | mark

mark = "-" | "_" | "." | "!" | "˜" | "*" | "’" | "(" | ")"

share|improve this question
I think the post answer itself. Good job :-) "Characters other than those in the “reserved” and “unsafe” sets (see RFC 2396 [42]) are equivalent to their “"%" HEX HEX” encoding." I suspect the fragment portion of the URI is more liberal. – user166390 May 4 '11 at 21:22

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.