Can only seem to find articles that discuss using ashx files to implement a httphandler but I need to handle a reference to a particular js file - not the ashx. I have the HTTPHandler in place and my config file entry looks like this (the config in inetpub):
<add name="DeeMacsHandler" verb="*" path="filename.js" type="[ALL THE USUAL ASSEMBLY BITS]" />
But it's 404'ing. Is the use of an ashx file necessary in this case? Am I skipping a big step? Or is there some way I can intercept the call for this particular js file?
NOTE: This is to be deployed to a SharePoint web app (not sure if that's of any relevance).
Thanks a lot.