Click here to Skip to main content
15,867,308 members
Articles / Programming Languages / Visual Basic

Skypekit.NET

Rate me:
Please Sign up or sign in to vote.
4.86/5 (17 votes)
15 Feb 2012CPOL3 min read 130.9K   44   44
Skypekit API for .NET

Download

Skypekit API and Tutorials

Introduction

Some developers today tend to use Skypekit in their applications to make it more interactive with the user. Skype API is very awesome indeed but the problem is it is only available in C++, Java and Python. I can't understand why Microsoft didn't develop API for .NET so we can develop it in C# or VB.NET.

I'm one of those, I needed to embed Skype into my graduation project and after I paid the 5$ fees and downloaded the SDK and Runtime I was surprised when I found that there is no support for the .NET languages.

So, the only way I found is to convert C++ methods into a COM component then I can call it in C# using DLLImport. And I spent weeks trying to do this solution but all in vain.

A punch of errors came to my face when I tried to create a new C++ project away from their pre-made tutorials. I was very sad with this result.

I tried to do it in Python but for some reason the socket couldn't make the connection to Skype.

Then I found the magic tool IKVM.

Background

IKVM is a tool that is used to convert Java Applications to .NET Executables (.exe) and Assemblies (.dll).

I used it to convert the Skype Class in their ready-made Java Classes into a .NET 'skypekit' class

Then I manually converted all the Java utilities Code to their corresponding C# code including:

  • AppKeyPairMgr Class
  • Listeners Class
  • MySession Class
  • ParseSkypeKitVersion Class
  • PrintStream Class
  • SignInMgr Class
  • XmlStrMgr Class

And I added an additional Class containing the variables needed and the two main variables which are:

  • myAppKeyPairMgr
  • mySession

I then managed to use Skypekit in my C# application very easy and I could access all its features.

In the uploaded project I included all the 12 Java tutorials done in C# to assure that my .NET DLL is working.

Using the code

To use it, First you have to add the following references:
  1. IKVM.OpenJDK.Core.dll : Java main classes converted to .NET
  2. IKVM.OpenJDK.Security.dll : Java Security Classes (needed for the PrivateKey Class and X509Certificate Class)
  3. IKVM.OpenJDK.Text.dll (Rarely Needed) : Needed for the DateFormat Class
  4. IKVM.Runtime.dll : IKVM Runtime libraries
  5. skypekit.dll : Skype Main Class converted from Java Jar Application using IKVM
  6. Skypekit.NET.dll : My classes created manually based on Java classes

And this is an example of a C# code To make Login

C#
public SkypeMain skypeMain;
public void Login(string user, string pass)
        {
            skypeMain = new SkypeMain();
            if ((!skypeMain.myAppKeyPairMgr.resolveAppKeyPairPath()) ||
                (!skypeMain.myAppKeyPairMgr.isValidCertificate()))
            {
                return;
            }

            skypeMain.mySession.doCreateSession(skypeMain.MY_CLASS_TAG, user, skypeMain.myAppKeyPairMgr.getPemFilePathname());

            if (skypeMain.mySession.mySignInMgr.Login(skypeMain.MY_CLASS_TAG, skypeMain.mySession, pass))
            {
                //Do Something
            }
        }

Remember to Do these step before running any Skype application.

  1. Download your Keypair (*.pem)
  2. execute
    openssl pkcs8 -topk8 -nocrypt -inform PEM -outform DER -in myKeyPair.pem -out myKeyPair.der 

    to create the certificate file (*.dem)
  3. [Optional] Change the variable KEY_PAIR_DEFAULT_PATHNAME in AppKeyPairMgr class to the path of your .pem keypair file to make it a constant in your app and then re-build the library. Or you can just pass the file path in the main arguments.
  4. Make sure that skype runtime console is running before you run your app.

Points of Interest

I learnt a lot from this painful experiences. So, I need you to know that every problem has a solution but needs some patience and deep thinking.

I reached this powerful and complete solution after weeks of search and thinking.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead Paymob Solutions
Egypt Egypt
Educated at Computer Science & Information College, Mansoura University, Egypt
Set up a software development company "Perfect Code" which was in the name "Ahmedn1" or "AN1Soft"

Working with:
C#, VB.NET, ASP.NET, PHP, Windows Phone applications, Java, Python

My quote in life is
To Be Or Not To Be

Comments and Discussions

 
QuestionWorks with skype for business? Pin
Alu8817-May-16 11:11
Alu8817-May-16 11:11 
Questioni want to know about keypair ? and how to change it Pin
Member 933229327-Feb-15 22:29
Member 933229327-Feb-15 22:29 
QuestionDownload your Keypair (*.pem) Pin
alex giulio22-Sep-14 4:25
alex giulio22-Sep-14 4:25 
AnswerRe: Download your Keypair (*.pem) Pin
Ahmedn15-Nov-14 11:48
Ahmedn15-Nov-14 11:48 
GeneralRe: Download your Keypair (*.pem) Pin
alex giulio5-Nov-14 15:30
alex giulio5-Nov-14 15:30 
AnswerRe: Download your Keypair (*.pem) Pin
Mikloo18-Jan-15 12:27
Mikloo18-Jan-15 12:27 
GeneralRe: Download your Keypair (*.pem) Pin
Ahmedn114-Feb-15 9:49
Ahmedn114-Feb-15 9:49 
Check the article's date Smile | :)
QuestionGreat and Hard Job was Put on this amazing App! Pin
Mikloo6-Apr-14 14:21
Mikloo6-Apr-14 14:21 
AnswerRe: Great and Hard Job was Put on this amazing App! Pin
Ahmedn13-Jul-14 13:40
Ahmedn13-Jul-14 13:40 
GeneralRe: Great and Hard Job was Put on this amazing App! Pin
Mikloo21-Aug-14 17:20
Mikloo21-Aug-14 17:20 
QuestionSkype not allowing new developers. Pin
Ravuri Vasu1-Sep-13 7:19
Ravuri Vasu1-Sep-13 7:19 
AnswerRe: Skype not allowing new developers. Pin
Ahmedn11-Sep-13 11:50
Ahmedn11-Sep-13 11:50 
Questionskype keypair alternative Pin
p_m_durrant23-Apr-13 4:00
p_m_durrant23-Apr-13 4:00 
QuestionEgyptians rule dude :D Pin
Poma3711-Feb-13 6:31
Poma3711-Feb-13 6:31 
QuestionKeypair making Pin
kalpesh280420-Nov-12 20:34
kalpesh280420-Nov-12 20:34 
AnswerRe: Keypair making Pin
Ahmedn121-Nov-12 20:07
Ahmedn121-Nov-12 20:07 
GeneralRe: Keypair making Pin
mwechter31-Dec-12 12:45
mwechter31-Dec-12 12:45 
GeneralRe: Keypair making Pin
Ahmedn123-Jan-13 12:20
Ahmedn123-Jan-13 12:20 
Questionskypekit.NET in Web MVC? Pin
Member 235697721-Sep-12 9:17
Member 235697721-Sep-12 9:17 
AnswerRe: skypekit.NET in Web MVC? Pin
Ahmedn116-Oct-12 14:42
Ahmedn116-Oct-12 14:42 
Question.pem file Pin
Soheil Mehralian10-Sep-12 6:20
Soheil Mehralian10-Sep-12 6:20 
AnswerRe: .pem file Pin
Ahmedn116-Oct-12 14:44
Ahmedn116-Oct-12 14:44 
QuestionRe: .pem file Pin
p_m_durrant22-Apr-13 3:54
p_m_durrant22-Apr-13 3:54 
AnswerRe: .pem file Pin
Ahmedn129-May-13 11:01
Ahmedn129-May-13 11:01 
GeneralRe: .pem file Pin
p_m_durrant2-Jun-13 22:52
p_m_durrant2-Jun-13 22:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.