My web-site is working under ASP.NET 3.5, IIS7, Integrated pipiline mode. My HttpModule is getting request to all resources, including URLs like this: http://my-site.com/address
And I would support '*' symbol in the URL for users. All attempts to navigate to such address are blocked by ASP.NET with the following error message:
HTTP Error 400.0 - Bad Request ASP.NET detected invalid characters in the URL.
In this case execution doesn't reach to the 'BeginRequest' handler.
Is there any posibility to get ability to process URLs with '*' symbol (and other reserved too if possible).
Thanks