Example #1
0
        public FiddlerCapture()
        {
            InitializeComponent();

            CaptureConfiguration = new UrlCaptureConfiguration();  // this usually comes from configuration settings

            Start();
        }
Example #2
0
        public WebSurgeConfiguration()
        {
            StressTester    = new StressTesterConfiguration();
            UrlCapture      = new UrlCaptureConfiguration();
            WindowSettings  = new WindowSettings();
            CheckForUpdates = new CheckForUpdates();

            AppName = "West Wind WebSurge";
        }
        public WebSurgeConfiguration()
        {
            StressTester = new StressTesterConfiguration();
            UrlCapture = new UrlCaptureConfiguration();
            WindowSettings = new WindowSettings();
            CheckForUpdates = new CheckForUpdates();

            AppName = "West Wind WebSurge";
        }
Example #4
0
        public FiddlerCapture(StressTestForm form)
        {
            InitializeComponent();
            CaptureConfiguration = App.Configuration.UrlCapture;
            MainForm             = form;

            if (!string.IsNullOrEmpty(App.Configuration.UrlCapture.Cert))
            {
                FiddlerApplication.Prefs.SetStringPref("fiddler.certmaker.bc.key", App.Configuration.UrlCapture.Key);
                FiddlerApplication.Prefs.SetStringPref("fiddler.certmaker.bc.cert", App.Configuration.UrlCapture.Cert);
            }
        }
Example #5
0
        public FiddlerCapture(StressTestForm form)
        {
            InitializeComponent();
            CaptureConfiguration = App.Configuration.UrlCapture;
            MainForm             = form;

            // Future use (Win7+): No dependencies on certmaker and bouncy castle libs
            // FiddlerApplication.Prefs.SetBoolPref("fiddler.certmaker.PreferCertEnroll", true);

            // IF PROBLEMS WITH SSL NOT WORKING
            // Delete the C:\Users\rstrahl\AppData\Roaming\Microsoft\Crypto\RSA folder

            if (!string.IsNullOrEmpty(App.Configuration.UrlCapture.Cert))
            {
                FiddlerApplication.Prefs.SetStringPref("fiddler.certmaker.bc.key", App.Configuration.UrlCapture.Key);
                FiddlerApplication.Prefs.SetStringPref("fiddler.certmaker.bc.cert", App.Configuration.UrlCapture.Cert);
            }
        }