Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any possibility of starting multiple fiddler sessions in a single desktop programatically in C#?

Tags:

fiddler

I wanted to start multiple fiddler sessions in a single desktop programatically in c#. Is there any possibility for that?

like image 809
Gurucharan Avatar asked Oct 22 '10 04:10

Gurucharan


2 Answers

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
like image 177
Shiraz Avatar answered Nov 19 '22 22:11

Shiraz


Within an existing Fiddler session

File -> New Viewer

The viewer has no capture facility, but is great for loading past captures for manual comparison.

like image 43
rob Avatar answered Nov 19 '22 22:11

rob