Ananth
Ananth

Reputation: 61

monitor http request from non-browser

I want to monitor HTTP request generated out of an exe. Is there any tool that can help me?

Actually, an exe would call my ASP.NET web page to register a user. The exe constructs the POST data request and calls my page. When the request reaches my web page, I don't see any data. I want to monitor the Request object and the traffic to find the reality.

Upvotes: 5

Views: 17138

Answers (4)

Moataz AL Dawood
Moataz AL Dawood

Reputation: 69

I use httpdebugger; It is the best for me because it can monitor http requests of java applications which sent by JVM.

Upvotes: 4

Karmastan
Karmastan

Reputation: 5726

Wireshark is a nice tool to do just what you're asking. It will record all network data sent across a network interface so you can see exactly what's being sent with your POST request. The interface can be a little overpowering, but works well.

Upvotes: 2

JB King
JB King

Reputation: 11910

Wireshark is another program that I'd suggest for doing such monitoring besides Fiddler.

Upvotes: 1

Simon Buchan
Simon Buchan

Reputation: 13255

I've always used Fiddler.

Upvotes: 5

Related Questions