Is there any possibility of starting multiple fiddler sessions in a single desktop programatically in C#?
I wanted to start multiple fiddler sessions in a single desktop programatically in c#. Is there any possibility for tha开发者_C百科t?
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
Within an existing Fiddler session
File -> New Viewer
The viewer has no capture facility, but is great for loading past captures for manual comparison.
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 ?
also right click on the 2nd fiddler file and select "open in viewer" then no command line options are needed
BasicTek
精彩评论