How do I capture HTTP response when the request is made by web browser?
Webpage retrieves data (with post) from a service. Service returns a json object. What I want is to capture that json and parse it in realtime.
What would be the simplest way to do it?
Your best bet is to use Fiddler, perhaps with the JSON viewer add-on.
From the homepage:
Try googling for
HttpModule
in .Net. They are some sort of filters. HTTP requests and responses flow through them and can manipulate the content.