Is there a better/more accurate/stricter method/way to find out if a URL is properly formatted?

Using:

bool IsGoodUrl = Uri.IsWellFormedUriString(url, UriKind.Absolute);

Doesn't catch everything. If I type htttp://www.google.com and run that filter, it passes. Then I get a NotSupportedExceptionlater when calling WebRequest.Create.

This bad url will also make it past the following code (which is the only other filter I could find):

Uri nUrl = null;
if (Uri.TryCreate(url, UriKind.Absolute, out nUrl))
{
    url = nUrl.ToString(); 
}
link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

The reason Uri.IsWellFormedUriString("htttp://www.google.com", UriKind.Absolute) returns true is because it is in a form that could be a valid Uri. URI and URL are not the same.

See: What's the difference between a URI and a URL?

In your case, I would check that new Uri("htttp://www.google.com").Scheme was equal to http or https.

link|improve this answer
Oh wow.. that's good info. I was just under the "assumption" that it was a different name for the same thing (dumb me..). – PiZzL3 Apr 12 '11 at 0:54
@PiZzL3 - I wasn't aware of the difference myself until I researched it (to write my answer to the question I linked to). See my edit above for testing the value of Scheme. – Greg Apr 12 '11 at 0:56
Scheme works great. Are there any other situations like this that you know of off the top of your head (valid URL, but not URI)? I'll go google it here in a bit too. – PiZzL3 Apr 12 '11 at 1:01
@PiZzL3 - I don't know what other gotchas there might be. Invalid servers come to mind, but you probably won't know if a server is valid or not until you try to access it. – Greg Apr 12 '11 at 1:11
Ahh cool, thanks for the help! – PiZzL3 Apr 12 '11 at 2:02
feedback

Technically, htttp://www.google.com is a properly formatted URL, according the URL specification. The NotSupportedException was thrown because htttp isn't a registered scheme. If it was a poorly-formatted URL, you would have gotten a UriFormatException. If you just care about HTTP(S) URLs, then just check the scheme as well.

link|improve this answer
I figured it was. I just want it to filter according to what can be used, not to spec. – PiZzL3 Apr 12 '11 at 0:51
feedback

Your Answer

 
or
required, but never shown

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