i, I have the following URL which is successfully handled by an Apache Tomcat application:
http://localhost:8080/ApplicationX/FileY/UpdateDocument(`<add location="somewhere">ContentZ</add>`).xml?VIEW=RAW
For some reason, when I try to handle the same request in IIS with an ASP.NET Http request handler (Class implementing IHttpHandler), I get the 'Bad request' exception and my code is never called. I have applied this patch in the registry (http://support.microsoft.com/kb/826437) to allow the ':' character but it didn't help with regards to the greater and lesser than characters.
Any ways to make this work? Any reasons with it is allowed in Apache but not in IIS?
Cheers.
P.S. I am using IIS 5.1 on a Windows XP workstation with .NET 3.5 SP1.