Eric again thanks so much for your quick response and time. Truly appreciate it.
I will reach out to Rick too. And maybe as a team effort someone can tell me the piece that I am missing
To answer your direct question on what O/S I am using Windows 7 64 but the app is 32 bit.
I did come across your Blog posting on Using Fiddler with WinHTTP from 4/29/2013.
I added (I believe I add correctly) the following to the fiddler custom script (in red).. (as outlined in your posting)
/*
static function OnShutdown() {
MessageBox.Show("Fiddler has shutdown");
}
*/
static function OnAttach() {
UpdateWinHTTPSettings();
MessageBox.Show("Fiddler is now the system proxy");
}
static function OnDetach() {
UpdateWinHTTPSettings();
MessageBox.Show("Fiddler is no longer the system proxy");
}
// The Main() function runs everytime yo
And also added (in red)...
function DoManualReload() {
FiddlerObject.ReloadScript();
}
public static ToolsAction("Update WinHTTPSettings")
function UpdateWinHTTPSettings() {
var oPSI: System.Diagnostics.ProcessStartInfo
= new System.Diagnostics.ProcessStartInfo();
oPSI.UseShellExecute = true;
oPSI.FileName = "netsh.exe";
oPSI.Verb = "runas";
oPSI.Arguments = "winhttp import proxy ie";
System.Diagnostics.Process.Start(oPSI);
// Re-run 32bit version
oPSI.FileName = oPSI.FileName =
Environment.SystemDirectory.Replace("system32", "syswow64")
+ "\\netsh.exe";
System.Diagnostics.Process.Start(oPSI);
}
public static ContextAction