Tagged Questions
The rfc2396 tag has no wiki summary.
17
votes
7answers
22k views
How do I encode URI parameter values?
I want to send a URI as the value of a query/matrix parameter. Before I can append it to an existing URI, I need to encode it according to RFC 2396. For example, given the input:
...
5
votes
3answers
294 views
.Net Uri Encoding RFC 2396 vs RFC 3986
First, some quick background... As part of an integration with a third party vendor, I have a C# .Net web application that receives a URL with a bunch of information in the query string. That URL is ...
4
votes
4answers
4k views
Encode and Decode rfc2396 URLs
What is the best way to encode URL strings such that they are rfc2396 compliant and to decode a rfc2396 compliant string such that for example %20 is replaced with a space character?
edit:
URLEncoder ...
1
vote
1answer
37 views
How to do a standard conform GET query in HTTP1.1
In shord: How is in a HTTP1.1 standard conformant way to rfc2616 a GET query to an URL like http://example.com/?query
Wikipedia says
GET /?query HTTP/1.1
...
In the rfc2616 it says
Request-URI ...
1
vote
2answers
98 views
What is RFC-compliant URI
While going through features of .net framework 4.5, i found that it has support for RFC-compliant URI.
Experts please tell me what is RFC-compliant URI.
Thanks
0
votes
4answers
69 views
Can any path segments of a URI have a query component?
According to the Section 3.3, Path Component of RFC2396 - Uniform Resource Identifiers,
The path may consist of a sequence of path segments separated by a single slash "/" character. Within a path ...
0
votes
3answers
87 views
Where can I get an compact overview of RFC 2396?
I want to understand RFC 2396 and the whole URL / URI thing better, and since NSURL from Cocoa is based on RFC 2396, I look for an overview. The RFC itself is too hard to read for me.