This is a migrated thread and some comments may be shown as answers.

Fiddler Viewer

0 Answers 261 Views
Fiddler Classic
This is a migrated thread and some comments may be shown as answers.
sec
Top achievements
Rank 1
sec asked on 04 Oct 2018, 06:20 PM

I have three fiddler instances running one is base instance running on 7777 port and second is viewer running on 8888 and third instance is a viewer running on 9999 port. When i want to clear the sessions from the fiddler i am using Execaction.exe dailydump (code below) to delete the sessions. But on using this i am able to clear the session of last viewer that i have opened and the sessions in second and first instances remains to be uncleared.

So the question is using execaction.exe how can we point to particular instance of fiddler in this scenario second instance that is running as viewer and first instance that is base instance. So how can we point and execute the execaction.exe to particular instance of fiddler.

Please looking for some support and help here.

Dailydump code:
case “dailydump”:
FiddlerObject.UI.actSelectAll();
if(FiddlerObject.UI.lvSessions.SelectedItems.Count > 0){
FiddlerObject.UI.actSaveSessionsToZip(String.Format(“C:\\temp\\{0:yyyy-MM-dd_HHmmss}.saz”,DateTime.UtcNow));
FiddlerObject.UI.actRemoveAllSessions();
}

No answers yet. Maybe you can help?

Tags
Fiddler Classic
Asked by
sec
Top achievements
Rank 1
Share this question
or