I'm playing with http handlers. When adding an http handler to the web.config, in order to make it process special extensions on IIS 7, you need to register it under the system.webServer/handlers element. The add element there has an allowPathInfo attribute and I can't understand what is it for...
MSDN says:
Specifies whether the handler processes full path information in a URI, such as contoso/marketing/imageGallery.aspx. If the value is true, the handler processes the full path, contoso/marketing/imageGallery. If the value is false, the handler processes only the last section of the path, /imageGallery.
It doesn't help so much... Anyone?
Thanks, Shay.