12
2005
Driving Skype from Java with JNIWrapper
As a developer, if you’ve every used Skype, you gotta be thinking… “wonder if there’s an API for this thing…”. Well the answer is “yes”, but not in a format that’s like anything you’ve used before!
The good news is that pretty much anything that you can do with Skype can be automated from the public api (and in a documented way). The bad news is that the API it exposes is consumed in a pretty unique fashion. You can grab the api docs from the Skype Developer page.
On Win32, the API works but using SendMessage calls to the Skype window (ie putting stuff directly on its message queue). There are also GTK equivalents that use freedesktop DBus to do similar. So it’s pretty darn ugly stuff – you end up copying API commands onto the queue (as strings… like the way you used to drive an AT modem!), and off they go. Skype has to be started and visible (part of the API license is that it has to remain visible), so no clean options there for a silent skype in the background.
So how do you call it from Java? Couplea options. There are a few libraries out there now, but mostly in a pretty average state. I found the quickest way to get going was generating my own using JNIWrapper. I installed the (very cool) ActiveSkype COM library from KhaosLabs that defines all the constants and strings you need. Then fed that COM library to JNIWrapper, and I was in business – current Skype Java lib read to roll! Then I could do stuff like:
IAccess myAccess = Access.create(ClsCtx.SERVER);
IUserCollection mates = myAccess.getFriendList();
Int32 mateCount = mates.getCount();
System.out.println("You have: " + mateCount + " mate(s)");
for (int i = 0; i < mateCount.getValue(); i++) {
IUser nextMate = mates.getItem(new Variant(i+1));
System.out.println("Next Mate is: " + nextMate.getHandle());
}
You can get access to their online status, place a call to them, or pretty much whatever the client can do. The API is pretty complete, including event notifiers for new calls, but it does have an unusual approach to exposing its services.
I thought about playing around with an "answering machine" style app... but couldn't find hooks for sending WAV files down the line. Audio pretty much has to come down the mic channel - and whilst there are ways around it (like installing a "Virtual Audio Cable" VAC driver on windows then remapping it to a media player)... well you get the picture.. it's a horror story.
It's fun to be able to script Skype, though. JNIWrapper is *so* the business. If you have to do *any* COM work it's definitely worth the dollars. It's one of the "Just Works" products that I just gotta rave about.
2 Comments + Add Comment
Leave a comment
Glen Smith
Archives
- January 2012
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- April 2011
- March 2011
- January 2011
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- May 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
- July 2006
- June 2006
- May 2006
- April 2006
- March 2006
- February 2006
- January 2006
- December 2005
- November 2005
- October 2005
- September 2005
- August 2005
- July 2005
- June 2005
- May 2005
- April 2005
- March 2005
- February 2005
- January 2005
- December 2004
- November 2004
- October 2004
- September 2004
- August 2004
- July 2004
- June 2004
- May 2004
- March 2004
- February 2004
- January 2004
- December 2003
- November 2003
- October 2003
- September 2003

An article by Glen





Check out com4j https://com4j.dev.java.net/
I have used JNIWrapper as well and its a good piece of software, but com4j is much better. It creates Java classes which are much more natural to code to rather than the COM interfaces.
Regards
Milind
I checked out com4j before getting into JNIWrapper but at the time it only supported JDK 1.5 and all my clients were on 1.4. Maybe it has improved since then. I’ll definitely have a look. The other big plus with JNIWrapper is the cross platform support (linux, win32 and now macosx) so it’s got a broader brief than just COM. I’ll definitely have a second look at com4j though.