I have a collection of custom httphandlers that serve up data to a Silverlight PivotViewer control. Initially, I had this in an ASP.NET 4 Web Forms project with the following configuration:
In system.web section:
<httpHandlers>
<add path="*.cxml" verb="GET" type="PivotServer.CxmlHandler"/>
<add path="*.dzc" verb="GET" type="PivotServer.DzcHandler"/>
<add path="*.dzi" verb="GET" type="PivotServer.DziHandler"/>
<add path="*/dzi/*_files/*/*_*.jpg" verb="GET" type="PivotServer.DeepZoomImageHandler"/>
<add path="*_files/*/*_*.jpg" verb="GET" type="PivotServer.ImageTileHandler"/>
</httpHandlers>
In the syste,.webServer section:
<handlers>
<add name="CXML" path="*.cxml" verb="GET" type="PivotServer.CxmlHandler"/>
<!-- Deep Zoom Collection and Deep Zoom Image XML and image handlers -->
<add name="DZC" path="*.dzc" verb="GET" type="PivotServer.DzcHandler"/>
<add name="DZI" path="*.dzi" verb="GET" type="PivotServer.DziHandler"/>
<add name="DeepZoomImage" path="*/dzi/*_files/*/*_*.jpg" verb="GET" type="PivotServer.DeepZoomImageHandler"/>
<add name="ImageTile" path="*_files/*/*_*.jpg" verb="GET" type="PivotServer.ImageTileHandler"/>
</handlers>
This works fine until I move the above configuration to an MVC 3 web project. When I make a request for a CXML file, I get a 404 not found error. I have used the following in Global.asax to tell MVC to ignore CXML requests:
routes.IgnoreRoute("{resource}.cxml");
But I still get a 404 general ASP.NET error (not the MVC specific "resource not found"). I've also tried to add a generic custom handler that accepts *.test requests with no luck.
If anyone has any insight into why my custom handlers do not work in MVC 3, it would be greatly appreciated, thanks.