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

Problem with CertMaker

8 Answers 224 Views
FiddlerCore
This is a migrated thread and some comments may be shown as answers.
n/a
Top achievements
Rank 1
n/a asked on 13 Feb 2017, 09:07 PM

I'm coding a very basic C# Console application to try FiddleCore. 

I start the application and then I navigate with the browser to http://www.telerik.com/forums and some output is printed on the console.

Here is the code:

01.using System;
02.using System.Collections.Generic;
03.using System.Linq;
04.using System.Text;
05.using System.Threading.Tasks;
06.using Fiddler;
07. 
08.namespace TestFiddler
09.{
10.    class Program
11.    {
12.        static void Main(string[] args)
13.        {
14.            Console.WriteLine("Start...");
15.            FiddlerApplication.OnNotification += delegate(object sender, NotificationEventArgs oNEA) { Console.WriteLine("** NotifyUser: " + oNEA.NotifyString); };
16.            FiddlerApplication.Log.OnLogString += delegate(object sender, LogEventArgs oLEA) { Console.WriteLine("** LogString: " + oLEA.LogString); };
17.            FiddlerApplication.AfterSessionComplete += delegate(Fiddler.Session oS)
18.            {
19.                Console.WriteLine("Finished session:\t" + oS.fullUrl);
20.            };
21. 
22.            FiddlerApplication.Startup(8888, FiddlerCoreStartupFlags.Default);
23. 
24.            Console.ReadKey();
25.            Console.WriteLine("Shutting down...");
26.            FiddlerApplication.Shutdown();
27.            Console.ReadKey();
28.        }
29.    }
30.}

 

I have a problem with CertMaker but I don't understand why. I have already copied CertMaker.dll in the Debug folder but I'm obviously making a mistake somewhere.

Here are first few lines of output:

Start...
Finished session:       http://www.telerik.com/forums
Finished session:       http://2380340583.log.optimizely.com:443
** LogString: Failed to load CertMaker from 'c:\users\bobo\documents\visual studio 2012\Projects\TestFiddler\TestFiddler\bin\Debug\CertMaker.dll' due to 'Impossibile caricare il file o l'assembly 'FiddlerCore, Version=2.6.3.50306, Culture=neutral, PublicKeyToken=67cb91587178ac5a' o una delle relative dipendenze. La definizione di manifesto dell'assembly specificato non corrisponde al riferimento all'assembly. (Eccezione da HRESULT: 0x80131040)'.
** LogString: /Fiddler.CertMaker> Using ♦.?¶+?¶ for certificate generation; UseWildcards=True.

 

Any idea?

8 Answers, 1 is accepted

Sort by
0
Tsviatko Yovtchev
Telerik team
answered on 17 Feb 2017, 04:08 PM
Hi Marco,

This is a problem on our side indeed. We are working on fixing it and we are going to release a new version of FIddlerCore late next week with the fix. 

Sorry about the hassle.

Regards,
Tsviatko Yovtchev
Telerik by Progress
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
0
n/a
Top achievements
Rank 1
answered on 09 Mar 2017, 09:17 PM

Hi Tsviatko,

Is there a way to know when the new version will be released? I can't find any changelog or version number on your website.

I've just tried to download FiddleCore but the version is still the same.

 

Marco

 

 

 

0
Tsviatko Yovtchev
Telerik team
answered on 13 Mar 2017, 07:00 PM
Sorry about that. Change log is also in process. The new version is live now. Please, give it a try.

Regards,
Tsviatko Yovtchev
Telerik by Progress
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
0
n/a
Top achievements
Rank 1
answered on 14 Mar 2017, 11:28 AM

Thank you Tsviatko for your answer.

I'm going to try the new version asap :)

 

Marco

0
n/a
Top achievements
Rank 1
answered on 19 Mar 2017, 12:17 AM
No luck! FiddlerCore.dll version is still the same: 2.6.3.50306
0
Tsviatko Yovtchev
Telerik team
answered on 24 Mar 2017, 11:47 AM
Hello,

Looks like our CDN failed us. Could you try again? You should be getting 4.6.20171.13571.

Regards,
Tsviatko Yovtchev
Telerik by Progress
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
0
Jaffee
Top achievements
Rank 1
answered on 19 Nov 2018, 06:25 PM
Not seeing this resolved in the latest download.

Starting FiddlerCore/4.6.20181.13826 (Ionic.Zip, Version=1.9.1.8, Culture=neutral, PublicKeyToken=edbe51ad942a3f5c)...
** LogString: Setting upstream gateway to none
** LogString: Created endpoint listening on port 8877
** LogString: Gateway: None
Hit CTRL+C to end session.
** LogString: Assembly 'C:\temp\deloitte-symphony-cff-legal-holds\Deloitte.Symphony.LegalHolds.Selfie\Deloitte.Symphony.LegalHolds.Selfie\bin\Debug\CertMaker.dll' did not specify a RequiredVersionAttribute. Aborting load of Certificate Generation module.
** LogString: /Fiddler.CertMaker> Using .?+? for certificate generation; UseWildcards=True.
** LogString: Created secure endpoint listening on port 7777, using a HTTPS certificate for 'localhost'
0
Jaffee
Top achievements
Rank 1
answered on 19 Nov 2018, 06:26 PM
Seeing the following with the latest download.

Starting FiddlerCore/4.6.20181.13826 (Ionic.Zip, Version=1.9.1.8, Culture=neutral, PublicKeyToken=edbe51ad942a3f5c)...
** LogString: Setting upstream gateway to none
** LogString: Created endpoint listening on port 8877
** LogString: Gateway: None
Hit CTRL+C to end session.
** LogString: Assembly 'C:\temp\deloitte-symphony-cff-legal-holds\Deloitte.Symphony.LegalHolds.Selfie\Deloitte.Symphony.LegalHolds.Selfie\bin\Debug\CertMaker.dll' did not specify a RequiredVersionAttribute. Aborting load of Certificate Generation module.
** LogString: /Fiddler.CertMaker> Using .?+? for certificate generation; UseWildcards=True.
** LogString: Created secure endpoint listening on port 7777, using a HTTPS certificate for 'localhost'
Tags
FiddlerCore
Asked by
n/a
Top achievements
Rank 1
Answers by
Tsviatko Yovtchev
Telerik team
n/a
Top achievements
Rank 1
Jaffee
Top achievements
Rank 1
Share this question
or