Frode Lillerud
Frode Lillerud

Reputation: 7394

"The format of the URI could not be determined" with WebRequest

I'm trying to perform a POST to a site using a WebRequest in C#. The site I'm posting to is an SMS site, and the messagetext is part of the URL. To avoid spaces in the URL I'm calling HttpUtility.Encode() to URL encode it.

But I keep getting an URIFormatException - "Invalid URI: The format of the URI could not be determined" - when I use code similar to this:

string url = "http://www.stackoverflow.com?question=a sentence with spaces";
string encoded = HttpUtility.UrlEncode(url);

WebRequest r = WebRequest.Create(encoded);
r.Method = "POST";
r.ContentLength = encoded.Length;
WebResponse response = r.GetResponse();

The exception occurs when I call WebRequest.Create().

What am I doing wrong?

Upvotes: 12

Views: 27641

Answers (2)

Mario Menger
Mario Menger

Reputation: 5902

You should only encode the argument, not the entire url, so try:

string url = "http://www.stackoverflow.com?question=" + HttpUtility.UrlEncode("a sentence with spaces");

WebRequest r = WebRequest.Create(url);
r.Method = "POST";
r.ContentLength = encoded.Length;
WebResponse response = r.GetResponse();

Encoding the entire url would mean the :// and the ? get encoded too. The encoded string is then no longer a valid url.

Upvotes: 16

Jason
Jason

Reputation: 28600

UrlEncode should only be used on the query string. Try this:

string query = "a sentence with spaces";
string encoded = "http://www.stackoverflow.com/?question=" + HttpUtility.UrlEncode(query);

The current version of your code is urlencoding the slashes and colon in the URL, which is confusing webrequest.

Upvotes: 1

Related Questions