I am using a VirtualPathProvider to serve some resources from .dll's (plugins). In IIS one can change the filetype filter for the ASP.NET ISAPI filter to '*'. How can I do the same for the ASP.NET development server that comes with Visual Studio?

Cheers in advance!

link|improve this question
feedback

1 Answer

ASP.NET deployment server can process all request (similar to ISAPI configuration on IIS6) if you add this to your web.config:

  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true" />
  </system.webServer>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.