How do I attach Visual Studio 2010 to IIS 7 to debug a custom HttpModule written for an existing 3rd party web application

19,373

A few things to check:

  • Make sure you have the right process. ASP.NET can decide to spawn multiple worker processes, especially if the process identity is different bettween apppools, etc.

  • Make sure the debug="true" is set in the compilation element in the web.config for the web application where the module is registered

  • Make sure the module is being compiled in Debug mode (ie: debug symbols are being generated).

The calling application should be irrelevant. You should be able to test this by just using a web browser to make a request to the virdir where the module is registered.

Share:
19,373
Ryan Taylor
Author by

Ryan Taylor

Updated on June 05, 2022

Comments

  • Ryan Taylor
    Ryan Taylor almost 2 years

    First a little background on what I am trying to achieve.

    I have a client application that is utilizing REST services served by ArcGIS Server and IIS 7. I want to be able to modify the response (remove or add parameters) before the response is sent to the client. Therefore, I am developing a custom HttpModule using Visual Studio 2010 and .NET 3.5 to intercept and modify the response.

    However, I am having difficulty debugging my custom HttpModule. I can attach to the IIS process using Visual Studio 2010 when it is run as Administrator, however, executing the web 3rd party web application does not cause any of my breakpoints to be hit. I can confirm that my module is running as it is able to write the contents to a file on disk.

    Things to note,

    1. The 3rd party web application is running in a virtual directory (e.g., arcgis/rest/) under the default website in IIS 7. It is running under its own application pool which is configured for .NET 2.0 rather than 4.0.
    2. The custom module is installed in the web applications bin folder and has been configured using the web.config file rather than the IIS 7 module management.

    To summarize: How can I debug a custom HttpModule I developed for a 3rd party web application using Visual Studio 2010?