I have an HttpHandler, registered it with this in system.webServer/handlers (And also in system.web/httpHandlers forr IIS6)
<add name="AttachmentHandler" verb="*" path="Attachment.ashx" type="AttachmentHandler"/>
And it works, however, we want to change the extension to something else like "Attachment.get" so that we can filter out the .get extensions from having encryption run on them (as it's screwing up our downloads).
Whenever I change the extension to something other than aspx, ashx, or the usual suspects, I get a 404!
What am I forgetting?