Hi
I'm trying to create a custom storage for report data in an ASP.NET MVC app. The custom ReportStorageWebExtension that I need, requires some additional information that can only be passed as a part of the url (as a url fragment). However, it seems the extension gets called from a different point in the processing pipeline & neither an actionfilter nor an httpmodule (I've tried both) gets called when any of the methods on the custom ReportStorageWebExtension gets called.
What is the recommended way to intercept calls made to the custom ReportStorageWebExtension so that additional information can be parsed from the route url & fed to it?
Indranil