Click here to Skip to main content
Click here to Skip to main content

Skypekit.NET

By , 15 Feb 2012
 

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

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)

About the Author

Ahmedn1
CEO Perfect Codes
Egypt Egypt
Member
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

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionRe: .pem filememberp_m_durrant22 Apr '13 - 3:54 
QuestionText Chat using Skypekitmemberthirusns10 Aug '12 - 1:55 
AnswerRe: Text Chat using SkypekitmemberAhmedn116 Oct '12 - 14:45 
QuestionC++/CLI ?memberDumitru Frunza17 May '12 - 9:01 
QuestionSpeech-Suport only? No Video correct?memberSebastianUw6 May '12 - 23:44 
AnswerRe: Speech-Suport only? No Video correct?memberAhmedn18 May '12 - 13:23 
AnswerRe: Speech-Suport only? No Video correct?memberAhmedn18 May '12 - 13:24 
QuestionCant find skypekit.dll or skypekit.NET.dllmemberAlan Kidd27 Apr '12 - 10:00 
AnswerRe: Cant find skypekit.dll or skypekit.NET.dllmemberAhmedn18 May '12 - 13:25 
QuestionerrorsmemberMember 867747825 Feb '12 - 10:24 
AnswerRe: errorsmemberAhmedn126 Feb '12 - 4:47 
QuestionCool did not know IKMVmemberNicolas Dorier15 Feb '12 - 20:58 
AnswerRe: Cool did not know IKMVmemberAhmedn117 Feb '12 - 16:38 
GeneralMy vote of 5memberАslam Iqbal15 Feb '12 - 20:19 
QuestionKeep it up...memberaamironline15 Feb '12 - 16:44 
QuestionMessage Automatically Removedgroupghjtyktyk15 Feb '12 - 15:53 

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130523.1 | Last Updated 16 Feb 2012
Article Copyright 2012 by Ahmedn1
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid