vote up 1 vote down star
2

Hi, when i do a GET with WebRequest.Create("http://abc/test.") i get 404 because according to fiddler the trailing dot gets stripped away by .NET and the web server needs the dot. how can i prevent that or work around it. any workaround is appreciated!

flag

4 Answers

vote up 0 vote down

This is a known problem that has come up on the Microsoft forums a few times.

The Uri class incorrectly thinks that all URIs act like Windows disk files where a trailing dot (for no file extension) is not relevant.

http://social.msdn.microsoft.com/Forums/en-US/netfxbcl/thread/5206beca-071f-485d-a2bd-657d635239c9/

link|flag
vote up 0 vote down

I have this exact same problem. Adding a trailing slash or encoding the dot with %2e don't work. Did you solve this problem? Or is there anyone with another idea?

link|flag
I narrowed it down to the Uri-class. It removes the dot at the end of every directory. "host/foo./bar"; -> "host/foo/bar"; – MeLLeR Aug 3 at 6:39
I created a bug-report @ connect.microsoft -> connect.microsoft.com/VisualStudio/feedback/… – MeLLeR Aug 3 at 16:11
vote up 0 vote down

Did you solve this problem?

link|flag
vote up 0 vote down

will a trailing slash

WebRequest.Create("http://abc/test./")

or encoding the dot

WebRequest.Create("http://abc/test%2e")

work?

link|flag

Your Answer

Get an OpenID
or

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