tags:

views:

166

answers:

1

I need to implement a basic internet proxy in c#. Initial investigation it seems like it could be a tricky area. Does anyone have pointers to starting points, resources or open source implementations?

A: 

Take a look at Fiddler core http://www.fiddler2.com/Fiddler/Core/. You can use Reflector to look at the code.

JD
I've used fiddler many times before but didn't know about fiddler core. Very nice stand alone (no fiddler ui) inet prxy server. Thanks for the pointer.
will