When entering a URL with an uppercase component, url appears to get converted to lowercase before being used in the request.
Thus, this breaks when the path has any sort of uppercase in it with a 404 error.
Further to this, I've been told that the following will probably do what you want while leaving case intact instead of "string url = rawUrl.ToLowerInvariant();" at line 108 in ConfigurationForm.cs
Further to this, I've been told that the following will probably do what you want while leaving case intact instead of "string url = rawUrl.ToLowerInvariant();" at line 108 in ConfigurationForm.cs
string url = String.Format(rawURL,System.Globalization.CultureInfo.InvariantCulture);