We're working on making SharePoint responsive. Part of the deal is to have responsive images. I would very much like to start with an IHttpHandler ala https://github.com/davemcdermid/AdaptiveImages and customize for SharePoint.
What I've done: put this adaptive images code in a project and deploy it. Dll is confirmed in the gac.
Register the handler in the web.config. When that definitely wasn't working, I registered it in IIS. It is serving images but not allowing me to debug/step through at all. When I run debugger with VS2010, the error I get says "This breakpoint will not currently be hit. No symbols have been loaded."
I've tried attaching my debugger to alternate w3wp.exe processes.
Code is verbatim from the git referenced above. Breakpoint is right inside the ProcessRequest() method. Please let me know if further details will help. Any general thoughts on how I can get step into a httphandler with sharepoint in debugger?