0

If one has a URL like this:

https://someserver/somewebApp/%20/ ~ http exhibits the same problem.

it appears that IIS (v7.5) has a defect because control for URL evaluation does not appear to be passed to the application?

Can anyone confirm they have seen this before? Is there a Microsoft reference to the defect (I can't find one)?

To answer the comment regarding the error received - no sub code offered (at least by fiddler):

HTTP/1.1 500 Internal Server Error
Cache-Control: private
Content-Type: text/html; charset=utf-8
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
bbb1719
  • 1
  • 1

1 Answers1

0

Generally %20 represents a space in url. so your url will be like /somewebApp/ /. this might be a problem as it is not a valid url. You can refer following link about %20

http://stackoverflow.com/questions/1634271/url-encoding-the-space-character-or-20
user2864496
  • 107
  • 3
  • 17