Reputation: 19
I want to make a program in either C# or Java that can read all of the network data sent to another program I have open. I want to then save this in a log file. Can anyone give me some suggestions as to how I can achieve this? (I would prefer to use C#)
Upvotes: 1
Views: 234
Reputation: 12295
You can create an Http Proxy to capture the network traffic (assuming it's http), just as the popular tool Fiddler
does. Take a look here: Any resource/codes on how fiddler works?
Upvotes: 1