tags:

views:

40

answers:

2

Is there a way to get internal http requests in a Flash, using C#?

Basically I need analyze all http traffic.

+2  A: 

The normal way to do this is to install a local proxy server such as fiddler specifically for that task.

Joel Coehoorn
A: 

You can use SharpPcap to do Ethernet packet capture from C# (not a pure managed solution), or use Wireshark. That's for very sophisticated analysis needs - otherwise a proxy is fine, as suggested by Joel Coehoorn.

Vinay Sajip