Reputation: 71
I wanted to start multiple fiddler sessions in a single desktop programatically in c#. Is there any possibility for that?
Upvotes: 7
Views: 4042
Reputation: 75
Probably the question is two open two Fiddler instances for proxy chaining.So Can we have two instances running on different ports where one instance1->instance2->UpStream Proxy or Instance2-AutoResponse ?
Upvotes: 0
Reputation: 1
also right click on the 2nd fiddler file and select "open in viewer" then no command line options are needed
BasicTek
Upvotes: -1
Reputation: 8410
Within an existing Fiddler session
File -> New Viewer
The viewer has no capture facility, but is great for loading past captures for manual comparison.
Upvotes: 7
Reputation: 2820
It's possible to have multiple Fiddler viewers (fiddler running in Viewer Mode), but it's not possible to have multiple capturing sessions. To be honest, there shouldn't be a need to have multiple capturing sessions.
For fiddler running in viewer mode I'd recommend a desktop shortcut to:
<Fiddler location> -viewer
e.g.
"C:\Program Files (x86)\Fiddler2\Fiddler.exe" -viewer
Upvotes: 12