Gurucharan
Gurucharan

Reputation: 71

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 that?

Upvotes: 7

Views: 4042

Answers (4)

surya
surya

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

BasicTek
BasicTek

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

rob
rob

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

Shiraz
Shiraz

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

Related Questions