chobo
chobo

Reputation: 32291

Any tools to see which http handlers are called?

I am trying to get a captcha web control to display, but it isn't going into the HttpHandler that I created. This isn't my project and it is quite big so I'm not sure what is going on. Is there any tools or techniques to see which handler is being called.

Upvotes: 0

Views: 80

Answers (4)

Tomas Voracek
Tomas Voracek

Reputation: 5914

Seems that handler is not registered in web.config? If you can debug it, set breakpoint in ProcessRequest method.

Upvotes: 2

Wyatt Barnett
Wyatt Barnett

Reputation: 15673

Have you looked at Trace.axd? It should list which modules and handlers get called if I recall correctly.

Upvotes: 1

Marek Kwiendacz
Marek Kwiendacz

Reputation: 9844

Add in your handlers:

Debugger.Launch()  

If this handler execute then debugger start.

Upvotes: 0

Esteban Araya
Esteban Araya

Reputation: 29664

Fiddler will show you every request your browser makes.

Upvotes: 0

Related Questions