SlideShare une entreprise Scribd logo
1  sur  28
Télécharger pour lire hors ligne
Skype Development
Techniques and Tools
An Overview

eBay Developers Program 2007

Peter Kalmström
PM Skype Toolbars
Share, Reuse, and Remix This Talk


These slides are available under the Creative Commons
Attribution-Noncommercial-Share Alike 3.0 License.




You can blog, photograph, and share this information with others.
Don’t forget to tag it ebaydevcon and ebaydevcon07.
© 2007 eBay Inc. Some rights reserved.
eBay and the eBay logo are among the registered trademarks of eBay Inc., PayPal and the PayPal logo are registered trademarks of PayPal, Inc.,
Skype and the Skype logo are trademarks of Skype Limited Corp., Shopping.com and the Shopping.com logo are trademarks of Shopping.com Ltd.
Other trademarks and brands are the property of their respective owners.
Overview Components




    JavaScript
    over COM

                   Web
                 presence
Techniques


    Manipulating the Skype client
•
         Cross-platform API
     –
         COM-wrapper
     –
         Java wrapper
     –
         URIs
     –
         Phone number manipulation—PNR
     –
    Web
•
         Web presence—SkypeWeb 1.1
     –
         Skype COM via javascript
     –
         The URIs
     –
    Building a Skype Extra
•
Communicating via the Skype Client
Manipulating the Skype client II


    Control dialogs
•
    Focus
•
    Silent mode
•



                            Add items to the
                        •
                            Do-more menu
Expression


    Help users express
•
    themselves by controlling:
         Mood messages
     –
         Avatars
     –
         Online status
     –
Cross-Platform API


    Works by operating system messaging
•
         Register for messages
     –
         Listen for messages
     –
         Send messages
     –
    Text-based
•
Make the First Call—API Example


->   CALL   test
<-   CALL   1540   STATUS ROUTING
<-   CALL   1540   SUBJECT
<-   CALL   1540   STATUS ROUTING
<-   CALL   1540   STATUS RINGING
<-   CALL   1540   STATUS INPROGRESS
Set First Call on Hold ...


-> SET CALL 1540 STATUS ONHOLD
<- CALL 1540 STATUS INPROGRESS
<- CALL 1540 STATUS ONHOLD


    .. and make another call!
•
->   CALL   echo123
<-   CALL   1545 STATUS ROUTING
<-   CALL   1545 SUBJECT
<-   CALL   1545 STATUS ROUTING
<-   CALL   1545 STATUS RINGING
<-   CALL   1545 STATUS INPROGRESS
Join Second Call (1545) into Conference
with First Call (1540)

->   SET CALL 1545 JOIN_CONFERENCE 1540
<-   CALL 1545 CONF_ID 17930
<-   CALL 1545 CONF_ID 17930
<-   CALL 1540 CONF_ID 17930
First Call Is Automatically Resumed
and Joined to Conference

<-   CALL   1540   STATUS INPROGRESS
<-   CALL   1540   DURATION 53
<-   CALL   1540   STATUS FINISHED
<-   CALL   1545   DURATION 23
<-   CALL   1545   STATUS FINISHED
COM-Wrapper


    Reduces the
•
    complexity of Skype-
    based development
    – Object-oriented
      programming
    – Collections
      (users, chats, calls,
      and much more)
    – Objects
    – Properties
    – Events
C# COM Example


SKYPE4COMLib.Skype objSkype;
SKYPE4COMLib.Call objCallOne, objCallTwo;

objSkype = new SKYPE4COMLib.Skype();
objSkype.Attach(7,true);

objCallOne = objSkype.PlaceCall(quot;testquot;,quot;quot;,quot;quot;,quot;quot;);
while (objCallOne.Status != SKYPE4COMLib.TCallStatus.clsInProgress){ }
objCallOne.Hold();

objCallTwo = objSkype.PlaceCall(quot;echo123quot;, quot;quot;, quot;quot;, quot;quot;);
while (objCallTwo.Status != SKYPE4COMLib.TCallStatus.clsInProgress){}

objCallTwo.Join(objCallOne.Id);
Coding with the COM API—
A Few Practical Tips

  Timeout property
•
• Client object
• Application object
• Skype object
Java Wrapper


  Java power
•
• Entire wrapper
  is open source
• Write once, run on
  Windows/Mac/Linux
Java Example

    package com.skype.sample;
•

    import   com.skype.ChatMessage;
•
    import   com.skype.ChatMessageAdapter;
•
    import   com.skype.Skype;
•
    import   com.skype.SkypeException;
•

    public class AutoAnswering {
•
      public static void main(String[]args)throws Exception {
•
       Skype.setDeamon(false); // to prevent exiting from this program
•
       Skype.addChatMessageListener(new ChatMessageAdapter() {
•
         public void chatMessageReceived(ChatMessage received)throws SkypeException {
•
           if (received.getType().equals(ChatMessage.Type.SAID)) {
•
            received.getSender().send(quot;I'm working. Please, wait a moment.quot;);
•
           }
•
          }
•
        });
•
       }
•
    }
•
URIs


  Since Skype 1.4 skype: links have been
•
  supported
• Can be used on any Web page or in
  any application that supports hyperlinks
• No authorization required
• Skype MS Office toolbar + Skype Web
  plug-ins only use URIs
Skype URI Examples


skype:
skype:[targets]
skype:[targets]?call
skype:[skypenames]?chat
skype:[skypename]?voicemail
skype:[skypename]?add
skype:[skypenames]?sendfile
skype:[skypename]?userinfo
skype:[PSTN]?sms
Phone Number Manipulation—PNR


  Advanced text parsing algorithm
•
• Phone numbers
        Find
    –
        Validate
    –
        Analyze
    –
  ActiveX
•
• Country selectors,
  flags and dropdowns
Web


      • See  online
        status for any
        Skype user
      • Presence
        information
        drives
        communication
Web Presence—SkypeWeb 1.1


    mystatus.skype.com/SkypeUserName
•
    Localized in ten languages
•
    Five image formats
•
    skypeName.mystatus.skype.com DNS query option
•
Skype COM via Javascript


    Windows-based ActiveX-component
•
    Internet Explorer only
•
    Skype client needs to be installed
•

    <html>
    <body>
    <object id=Skype name=Skype height=0 width=0
       classid=clsid:830690FC-BF2F-47A6-AC2D-330BCB402664
       codebase=quot;http://www.yoursite.com/Skype4COM.dllquot; >
    <span style=quot;color: redquot;>Failed to load control.</span>
    </object>
    </body>
    </html>
Building a Skype Extra


  Skype Extras SDK
•
• Software distribution and DRM-system
• Distribute many types of applications
         Exe
     –
         DLL
     –
         DHTML
     –
         Java
     –
    SDK embeds your application
•
    into Skype-distribution package
Skype Extra SDK & Publishing Studio
Other Tools


  SkypeTracer
•
• Skype icons
• Skype strings
• SkypeCasts javascript
Q&A
  Contact information:


    Peter Kalmström
Skype:peter.kalmstrom.nu
Thank you!
Please give your completed session evaluation
to the room monitor as you exit. Your feedback
is extremely valuable to us!
developer.skype.com
Sharing is good
Localization is vital
Certification paths

Questions?
To learn more, visit
pages.ebay.com/devcon/

Contenu connexe

Tendances

Nokia Asha webinar: Add VoIP services to your Nokia Asha apps
Nokia Asha webinar: Add VoIP services to your Nokia Asha appsNokia Asha webinar: Add VoIP services to your Nokia Asha apps
Nokia Asha webinar: Add VoIP services to your Nokia Asha apps
Microsoft Mobile Developer
 
Laird Best Practices Ajax World West2008
Laird Best Practices Ajax World West2008Laird Best Practices Ajax World West2008
Laird Best Practices Ajax World West2008
rajivmordani
 

Tendances (18)

Nokia Asha webinar: Add VoIP services to your Nokia Asha apps
Nokia Asha webinar: Add VoIP services to your Nokia Asha appsNokia Asha webinar: Add VoIP services to your Nokia Asha apps
Nokia Asha webinar: Add VoIP services to your Nokia Asha apps
 
Apps with Apache Cordova and Phonegap
Apps with Apache Cordova and PhonegapApps with Apache Cordova and Phonegap
Apps with Apache Cordova and Phonegap
 
Webapi
WebapiWebapi
Webapi
 
iPhone & Java Web Services
iPhone & Java Web ServicesiPhone & Java Web Services
iPhone & Java Web Services
 
SpeakSpace Webcasting
SpeakSpace WebcastingSpeakSpace Webcasting
SpeakSpace Webcasting
 
Laird Best Practices Ajax World West2008
Laird Best Practices Ajax World West2008Laird Best Practices Ajax World West2008
Laird Best Practices Ajax World West2008
 
Gears and HTML 5 @media Ajax London 2008
Gears and HTML 5 @media Ajax London 2008Gears and HTML 5 @media Ajax London 2008
Gears and HTML 5 @media Ajax London 2008
 
October OpenNTF Webinar - What we like about Domino/Notes 12, recommended new...
October OpenNTF Webinar - What we like about Domino/Notes 12, recommended new...October OpenNTF Webinar - What we like about Domino/Notes 12, recommended new...
October OpenNTF Webinar - What we like about Domino/Notes 12, recommended new...
 
Extreme Web Performance for Mobile Devices
Extreme Web Performance for Mobile Devices Extreme Web Performance for Mobile Devices
Extreme Web Performance for Mobile Devices
 
JavaFX 8 everywhere; write once run anywhere by Mohamed Taman
JavaFX 8 everywhere; write once run anywhere by Mohamed TamanJavaFX 8 everywhere; write once run anywhere by Mohamed Taman
JavaFX 8 everywhere; write once run anywhere by Mohamed Taman
 
Symfony2 for legacy app rejuvenation: the eZ Publish case study
Symfony2 for legacy app rejuvenation: the eZ Publish case studySymfony2 for legacy app rejuvenation: the eZ Publish case study
Symfony2 for legacy app rejuvenation: the eZ Publish case study
 
Real World Technologies
Real World TechnologiesReal World Technologies
Real World Technologies
 
Desktop Applications with NetBeans
Desktop Applications with NetBeansDesktop Applications with NetBeans
Desktop Applications with NetBeans
 
Large Scale Continuous Delivery
Large Scale Continuous DeliveryLarge Scale Continuous Delivery
Large Scale Continuous Delivery
 
Modernizing i5 Applications
Modernizing i5 ApplicationsModernizing i5 Applications
Modernizing i5 Applications
 
Extreme Web Performance for Mobile Device Fluent 2015
Extreme Web Performance for Mobile Device Fluent 2015Extreme Web Performance for Mobile Device Fluent 2015
Extreme Web Performance for Mobile Device Fluent 2015
 
Professional PHP: an open-source alternative for enterprise development [Kort...
Professional PHP: an open-source alternative for enterprise development [Kort...Professional PHP: an open-source alternative for enterprise development [Kort...
Professional PHP: an open-source alternative for enterprise development [Kort...
 
Web services on IBM i with PHP and Zend Framework
Web services on IBM i with PHP and Zend FrameworkWeb services on IBM i with PHP and Zend Framework
Web services on IBM i with PHP and Zend Framework
 

Similaire à Skype Development Techniques and Tools

symfony: An Open-Source Framework for Professionals (Dutch Php Conference 2008)
symfony: An Open-Source Framework for Professionals (Dutch Php Conference 2008)symfony: An Open-Source Framework for Professionals (Dutch Php Conference 2008)
symfony: An Open-Source Framework for Professionals (Dutch Php Conference 2008)
Fabien Potencier
 
iPhone Development For Experienced Web Developers
iPhone Development For Experienced Web DevelopersiPhone Development For Experienced Web Developers
iPhone Development For Experienced Web Developers
lisab517
 
Socket applications
Socket applicationsSocket applications
Socket applications
João Moura
 
Fix me if you can - DrupalCon prague
Fix me if you can - DrupalCon pragueFix me if you can - DrupalCon prague
Fix me if you can - DrupalCon prague
hernanibf
 
How LinkedIn changed its security model in order to offer an API
How LinkedIn changed its security model  in order to offer an APIHow LinkedIn changed its security model  in order to offer an API
How LinkedIn changed its security model in order to offer an API
LinkedIn
 
Presentation eXo Foss Bridge
Presentation eXo Foss BridgePresentation eXo Foss Bridge
Presentation eXo Foss Bridge
Jeremi Joslin
 
Scripting Yor Java Application with BSF3
Scripting Yor Java Application with BSF3Scripting Yor Java Application with BSF3
Scripting Yor Java Application with BSF3
day
 

Similaire à Skype Development Techniques and Tools (20)

symfony: An Open-Source Framework for Professionals (Dutch Php Conference 2008)
symfony: An Open-Source Framework for Professionals (Dutch Php Conference 2008)symfony: An Open-Source Framework for Professionals (Dutch Php Conference 2008)
symfony: An Open-Source Framework for Professionals (Dutch Php Conference 2008)
 
Capistrano
CapistranoCapistrano
Capistrano
 
iPhone Development For Experienced Web Developers
iPhone Development For Experienced Web DevelopersiPhone Development For Experienced Web Developers
iPhone Development For Experienced Web Developers
 
C# 4.0 - Whats New
C# 4.0 - Whats NewC# 4.0 - Whats New
C# 4.0 - Whats New
 
Workshop KrakYourNet2016 - Web applications hacking Ruby on Rails example
Workshop KrakYourNet2016 - Web applications hacking Ruby on Rails example Workshop KrakYourNet2016 - Web applications hacking Ruby on Rails example
Workshop KrakYourNet2016 - Web applications hacking Ruby on Rails example
 
RoR Workshop - Web applications hacking - Ruby on Rails example
RoR Workshop - Web applications hacking - Ruby on Rails exampleRoR Workshop - Web applications hacking - Ruby on Rails example
RoR Workshop - Web applications hacking - Ruby on Rails example
 
Araport Workshop Tutorial 2: Authentication and the Agave Profiles Service
Araport Workshop Tutorial 2: Authentication and the Agave Profiles ServiceAraport Workshop Tutorial 2: Authentication and the Agave Profiles Service
Araport Workshop Tutorial 2: Authentication and the Agave Profiles Service
 
Api Design
Api DesignApi Design
Api Design
 
Capistrano
CapistranoCapistrano
Capistrano
 
JavaFX Advanced
JavaFX AdvancedJavaFX Advanced
JavaFX Advanced
 
Improving your shell usage - 2010
Improving your shell usage - 2010Improving your shell usage - 2010
Improving your shell usage - 2010
 
Capistrano Overview
Capistrano OverviewCapistrano Overview
Capistrano Overview
 
Socket applications
Socket applicationsSocket applications
Socket applications
 
Wes Leonardo - Putting AIR into your Application
Wes Leonardo - Putting AIR into your ApplicationWes Leonardo - Putting AIR into your Application
Wes Leonardo - Putting AIR into your Application
 
One commit, one release. Continuously delivering a Symfony project.
One commit, one release. Continuously delivering a Symfony project.One commit, one release. Continuously delivering a Symfony project.
One commit, one release. Continuously delivering a Symfony project.
 
Fix me if you can - DrupalCon prague
Fix me if you can - DrupalCon pragueFix me if you can - DrupalCon prague
Fix me if you can - DrupalCon prague
 
How LinkedIn changed its security model in order to offer an API
How LinkedIn changed its security model  in order to offer an APIHow LinkedIn changed its security model  in order to offer an API
How LinkedIn changed its security model in order to offer an API
 
Presentation eXo Foss Bridge
Presentation eXo Foss BridgePresentation eXo Foss Bridge
Presentation eXo Foss Bridge
 
Scripting Yor Java Application with BSF3
Scripting Yor Java Application with BSF3Scripting Yor Java Application with BSF3
Scripting Yor Java Application with BSF3
 
MTR Troubleshooting
MTR TroubleshootingMTR Troubleshooting
MTR Troubleshooting
 

Plus de Phil Wolff

Plus de Phil Wolff (20)

A Code of Ethics for Product Managers?
A Code of Ethics for Product Managers?A Code of Ethics for Product Managers?
A Code of Ethics for Product Managers?
 
Seven Reasons This Epic Training Should Matter To You
Seven Reasons This Epic Training Should Matter To YouSeven Reasons This Epic Training Should Matter To You
Seven Reasons This Epic Training Should Matter To You
 
14 OpenOakland Leadership Hacks for 2015
14 OpenOakland Leadership Hacks for 201514 OpenOakland Leadership Hacks for 2015
14 OpenOakland Leadership Hacks for 2015
 
OpenOakland: 3 goals for 2014
OpenOakland: 3 goals for 2014OpenOakland: 3 goals for 2014
OpenOakland: 3 goals for 2014
 
DRAFT: OpenOakland Product Selection
DRAFT: OpenOakland Product SelectionDRAFT: OpenOakland Product Selection
DRAFT: OpenOakland Product Selection
 
So Your Product Is Going To Die. Here's What Happens Next.
So Your Product Is Going To Die. Here's What Happens Next. So Your Product Is Going To Die. Here's What Happens Next.
So Your Product Is Going To Die. Here's What Happens Next.
 
The Things I Don't Know about Product Retirement Could Fill A Slide Deck
The Things I Don't Know about Product Retirement Could Fill A Slide DeckThe Things I Don't Know about Product Retirement Could Fill A Slide Deck
The Things I Don't Know about Product Retirement Could Fill A Slide Deck
 
What’s missing from customer service live chat?
What’s missing from customer service live chat?What’s missing from customer service live chat?
What’s missing from customer service live chat?
 
Proposal: A new City of Oakland Technology Commission
Proposal: A new City of Oakland Technology Commission Proposal: A new City of Oakland Technology Commission
Proposal: A new City of Oakland Technology Commission
 
Personal Data Economy Action Plan - Get Smart, Get Connected, Get Proof
Personal Data Economy Action Plan - Get Smart, Get Connected, Get ProofPersonal Data Economy Action Plan - Get Smart, Get Connected, Get Proof
Personal Data Economy Action Plan - Get Smart, Get Connected, Get Proof
 
The Cloud Needs An Operating System – Philip J. Windley
The Cloud Needs An Operating System – Philip J. WindleyThe Cloud Needs An Operating System – Philip J. Windley
The Cloud Needs An Operating System – Philip J. Windley
 
Johannes Ernst introduces the first Personal Clouds Community Gathering
Johannes Ernst introduces the first Personal Clouds Community GatheringJohannes Ernst introduces the first Personal Clouds Community Gathering
Johannes Ernst introduces the first Personal Clouds Community Gathering
 
Why Personal Clouds Need A Network
Why Personal Clouds Need A NetworkWhy Personal Clouds Need A Network
Why Personal Clouds Need A Network
 
What could kill NSTIC? A friendly threat assessment in 3 parts.
What could kill NSTIC? A friendly threat assessment in 3 parts.What could kill NSTIC? A friendly threat assessment in 3 parts.
What could kill NSTIC? A friendly threat assessment in 3 parts.
 
Fiduciary clouds
Fiduciary cloudsFiduciary clouds
Fiduciary clouds
 
Hi! I'm Phil Wolff. And this is PDEC.
Hi! I'm Phil Wolff. And this is PDEC.Hi! I'm Phil Wolff. And this is PDEC.
Hi! I'm Phil Wolff. And this is PDEC.
 
22 Ways Skype's Digital Identity System Sucks
22 Ways Skype's Digital Identity System Sucks22 Ways Skype's Digital Identity System Sucks
22 Ways Skype's Digital Identity System Sucks
 
Digital Signatures for use by IDA Relying Parties v102
Digital Signatures for use by IDA Relying Parties  v102Digital Signatures for use by IDA Relying Parties  v102
Digital Signatures for use by IDA Relying Parties v102
 
Skype 2021: The Next 9 Years
Skype 2021: The Next 9 Years Skype 2021: The Next 9 Years
Skype 2021: The Next 9 Years
 
#Portability4Trust - Personal Data Portability for Trust Frameworks
#Portability4Trust - Personal Data Portability for Trust Frameworks#Portability4Trust - Personal Data Portability for Trust Frameworks
#Portability4Trust - Personal Data Portability for Trust Frameworks
 

Dernier

VIP Independent Call Girls in Mira Bhayandar 🌹 9920725232 ( Call Me ) Mumbai ...
VIP Independent Call Girls in Mira Bhayandar 🌹 9920725232 ( Call Me ) Mumbai ...VIP Independent Call Girls in Mira Bhayandar 🌹 9920725232 ( Call Me ) Mumbai ...
VIP Independent Call Girls in Mira Bhayandar 🌹 9920725232 ( Call Me ) Mumbai ...
dipikadinghjn ( Why You Choose Us? ) Escorts
 
Call Girls in New Ashok Nagar, (delhi) call me [9953056974] escort service 24X7
Call Girls in New Ashok Nagar, (delhi) call me [9953056974] escort service 24X7Call Girls in New Ashok Nagar, (delhi) call me [9953056974] escort service 24X7
Call Girls in New Ashok Nagar, (delhi) call me [9953056974] escort service 24X7
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
VIP Independent Call Girls in Andheri 🌹 9920725232 ( Call Me ) Mumbai Escorts...
VIP Independent Call Girls in Andheri 🌹 9920725232 ( Call Me ) Mumbai Escorts...VIP Independent Call Girls in Andheri 🌹 9920725232 ( Call Me ) Mumbai Escorts...
VIP Independent Call Girls in Andheri 🌹 9920725232 ( Call Me ) Mumbai Escorts...
dipikadinghjn ( Why You Choose Us? ) Escorts
 
VIP Call Girl Service Andheri West ⚡ 9920725232 What It Takes To Be The Best ...
VIP Call Girl Service Andheri West ⚡ 9920725232 What It Takes To Be The Best ...VIP Call Girl Service Andheri West ⚡ 9920725232 What It Takes To Be The Best ...
VIP Call Girl Service Andheri West ⚡ 9920725232 What It Takes To Be The Best ...
dipikadinghjn ( Why You Choose Us? ) Escorts
 
VIP Independent Call Girls in Taloja 🌹 9920725232 ( Call Me ) Mumbai Escorts ...
VIP Independent Call Girls in Taloja 🌹 9920725232 ( Call Me ) Mumbai Escorts ...VIP Independent Call Girls in Taloja 🌹 9920725232 ( Call Me ) Mumbai Escorts ...
VIP Independent Call Girls in Taloja 🌹 9920725232 ( Call Me ) Mumbai Escorts ...
dipikadinghjn ( Why You Choose Us? ) Escorts
 
VIP Call Girl in Mumbai Central 💧 9920725232 ( Call Me ) Get A New Crush Ever...
VIP Call Girl in Mumbai Central 💧 9920725232 ( Call Me ) Get A New Crush Ever...VIP Call Girl in Mumbai Central 💧 9920725232 ( Call Me ) Get A New Crush Ever...
VIP Call Girl in Mumbai Central 💧 9920725232 ( Call Me ) Get A New Crush Ever...
dipikadinghjn ( Why You Choose Us? ) Escorts
 

Dernier (20)

Top Rated Pune Call Girls Viman Nagar ⟟ 6297143586 ⟟ Call Me For Genuine Sex...
Top Rated  Pune Call Girls Viman Nagar ⟟ 6297143586 ⟟ Call Me For Genuine Sex...Top Rated  Pune Call Girls Viman Nagar ⟟ 6297143586 ⟟ Call Me For Genuine Sex...
Top Rated Pune Call Girls Viman Nagar ⟟ 6297143586 ⟟ Call Me For Genuine Sex...
 
Top Rated Pune Call Girls Dighi ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Dighi ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Dighi ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Dighi ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
 
Mira Road Awesome 100% Independent Call Girls NUmber-9833754194-Dahisar Inter...
Mira Road Awesome 100% Independent Call Girls NUmber-9833754194-Dahisar Inter...Mira Road Awesome 100% Independent Call Girls NUmber-9833754194-Dahisar Inter...
Mira Road Awesome 100% Independent Call Girls NUmber-9833754194-Dahisar Inter...
 
Gurley shaw Theory of Monetary Economics.
Gurley shaw Theory of Monetary Economics.Gurley shaw Theory of Monetary Economics.
Gurley shaw Theory of Monetary Economics.
 
Call Girls in New Friends Colony Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escort...
Call Girls in New Friends Colony Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escort...Call Girls in New Friends Colony Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escort...
Call Girls in New Friends Colony Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escort...
 
Top Rated Pune Call Girls Aundh ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Aundh ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Aundh ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Aundh ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
 
Solution Manual for Principles of Corporate Finance 14th Edition by Richard B...
Solution Manual for Principles of Corporate Finance 14th Edition by Richard B...Solution Manual for Principles of Corporate Finance 14th Edition by Richard B...
Solution Manual for Principles of Corporate Finance 14th Edition by Richard B...
 
Top Rated Pune Call Girls Pashan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Pashan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Pashan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Pashan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
 
VIP Independent Call Girls in Mira Bhayandar 🌹 9920725232 ( Call Me ) Mumbai ...
VIP Independent Call Girls in Mira Bhayandar 🌹 9920725232 ( Call Me ) Mumbai ...VIP Independent Call Girls in Mira Bhayandar 🌹 9920725232 ( Call Me ) Mumbai ...
VIP Independent Call Girls in Mira Bhayandar 🌹 9920725232 ( Call Me ) Mumbai ...
 
Enjoy Night⚡Call Girls Patel Nagar Delhi >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Patel Nagar Delhi >༒8448380779 Escort ServiceEnjoy Night⚡Call Girls Patel Nagar Delhi >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Patel Nagar Delhi >༒8448380779 Escort Service
 
(Vedika) Low Rate Call Girls in Pune Call Now 8250077686 Pune Escorts 24x7
(Vedika) Low Rate Call Girls in Pune Call Now 8250077686 Pune Escorts 24x7(Vedika) Low Rate Call Girls in Pune Call Now 8250077686 Pune Escorts 24x7
(Vedika) Low Rate Call Girls in Pune Call Now 8250077686 Pune Escorts 24x7
 
WhatsApp 📞 Call : 9892124323 ✅Call Girls In Chembur ( Mumbai ) secure service
WhatsApp 📞 Call : 9892124323  ✅Call Girls In Chembur ( Mumbai ) secure serviceWhatsApp 📞 Call : 9892124323  ✅Call Girls In Chembur ( Mumbai ) secure service
WhatsApp 📞 Call : 9892124323 ✅Call Girls In Chembur ( Mumbai ) secure service
 
Navi Mumbai Cooperetive Housewife Call Girls-9833754194-Natural Panvel Enjoye...
Navi Mumbai Cooperetive Housewife Call Girls-9833754194-Natural Panvel Enjoye...Navi Mumbai Cooperetive Housewife Call Girls-9833754194-Natural Panvel Enjoye...
Navi Mumbai Cooperetive Housewife Call Girls-9833754194-Natural Panvel Enjoye...
 
Call Girls in New Ashok Nagar, (delhi) call me [9953056974] escort service 24X7
Call Girls in New Ashok Nagar, (delhi) call me [9953056974] escort service 24X7Call Girls in New Ashok Nagar, (delhi) call me [9953056974] escort service 24X7
Call Girls in New Ashok Nagar, (delhi) call me [9953056974] escort service 24X7
 
VIP Independent Call Girls in Andheri 🌹 9920725232 ( Call Me ) Mumbai Escorts...
VIP Independent Call Girls in Andheri 🌹 9920725232 ( Call Me ) Mumbai Escorts...VIP Independent Call Girls in Andheri 🌹 9920725232 ( Call Me ) Mumbai Escorts...
VIP Independent Call Girls in Andheri 🌹 9920725232 ( Call Me ) Mumbai Escorts...
 
VIP Call Girl Service Andheri West ⚡ 9920725232 What It Takes To Be The Best ...
VIP Call Girl Service Andheri West ⚡ 9920725232 What It Takes To Be The Best ...VIP Call Girl Service Andheri West ⚡ 9920725232 What It Takes To Be The Best ...
VIP Call Girl Service Andheri West ⚡ 9920725232 What It Takes To Be The Best ...
 
VIP Independent Call Girls in Taloja 🌹 9920725232 ( Call Me ) Mumbai Escorts ...
VIP Independent Call Girls in Taloja 🌹 9920725232 ( Call Me ) Mumbai Escorts ...VIP Independent Call Girls in Taloja 🌹 9920725232 ( Call Me ) Mumbai Escorts ...
VIP Independent Call Girls in Taloja 🌹 9920725232 ( Call Me ) Mumbai Escorts ...
 
Webinar on E-Invoicing for Fintech Belgium
Webinar on E-Invoicing for Fintech BelgiumWebinar on E-Invoicing for Fintech Belgium
Webinar on E-Invoicing for Fintech Belgium
 
VIP Call Girl in Mumbai Central 💧 9920725232 ( Call Me ) Get A New Crush Ever...
VIP Call Girl in Mumbai Central 💧 9920725232 ( Call Me ) Get A New Crush Ever...VIP Call Girl in Mumbai Central 💧 9920725232 ( Call Me ) Get A New Crush Ever...
VIP Call Girl in Mumbai Central 💧 9920725232 ( Call Me ) Get A New Crush Ever...
 
(INDIRA) Call Girl Mumbai Call Now 8250077686 Mumbai Escorts 24x7
(INDIRA) Call Girl Mumbai Call Now 8250077686 Mumbai Escorts 24x7(INDIRA) Call Girl Mumbai Call Now 8250077686 Mumbai Escorts 24x7
(INDIRA) Call Girl Mumbai Call Now 8250077686 Mumbai Escorts 24x7
 

Skype Development Techniques and Tools

  • 1. Skype Development Techniques and Tools An Overview eBay Developers Program 2007 Peter Kalmström PM Skype Toolbars
  • 2. Share, Reuse, and Remix This Talk These slides are available under the Creative Commons Attribution-Noncommercial-Share Alike 3.0 License. You can blog, photograph, and share this information with others. Don’t forget to tag it ebaydevcon and ebaydevcon07. © 2007 eBay Inc. Some rights reserved. eBay and the eBay logo are among the registered trademarks of eBay Inc., PayPal and the PayPal logo are registered trademarks of PayPal, Inc., Skype and the Skype logo are trademarks of Skype Limited Corp., Shopping.com and the Shopping.com logo are trademarks of Shopping.com Ltd. Other trademarks and brands are the property of their respective owners.
  • 3. Overview Components JavaScript over COM Web presence
  • 4. Techniques Manipulating the Skype client • Cross-platform API – COM-wrapper – Java wrapper – URIs – Phone number manipulation—PNR – Web • Web presence—SkypeWeb 1.1 – Skype COM via javascript – The URIs – Building a Skype Extra •
  • 5. Communicating via the Skype Client
  • 6. Manipulating the Skype client II Control dialogs • Focus • Silent mode • Add items to the • Do-more menu
  • 7. Expression Help users express • themselves by controlling: Mood messages – Avatars – Online status –
  • 8. Cross-Platform API Works by operating system messaging • Register for messages – Listen for messages – Send messages – Text-based •
  • 9. Make the First Call—API Example -> CALL test <- CALL 1540 STATUS ROUTING <- CALL 1540 SUBJECT <- CALL 1540 STATUS ROUTING <- CALL 1540 STATUS RINGING <- CALL 1540 STATUS INPROGRESS
  • 10. Set First Call on Hold ... -> SET CALL 1540 STATUS ONHOLD <- CALL 1540 STATUS INPROGRESS <- CALL 1540 STATUS ONHOLD .. and make another call! • -> CALL echo123 <- CALL 1545 STATUS ROUTING <- CALL 1545 SUBJECT <- CALL 1545 STATUS ROUTING <- CALL 1545 STATUS RINGING <- CALL 1545 STATUS INPROGRESS
  • 11. Join Second Call (1545) into Conference with First Call (1540) -> SET CALL 1545 JOIN_CONFERENCE 1540 <- CALL 1545 CONF_ID 17930 <- CALL 1545 CONF_ID 17930 <- CALL 1540 CONF_ID 17930
  • 12. First Call Is Automatically Resumed and Joined to Conference <- CALL 1540 STATUS INPROGRESS <- CALL 1540 DURATION 53 <- CALL 1540 STATUS FINISHED <- CALL 1545 DURATION 23 <- CALL 1545 STATUS FINISHED
  • 13. COM-Wrapper Reduces the • complexity of Skype- based development – Object-oriented programming – Collections (users, chats, calls, and much more) – Objects – Properties – Events
  • 14. C# COM Example SKYPE4COMLib.Skype objSkype; SKYPE4COMLib.Call objCallOne, objCallTwo; objSkype = new SKYPE4COMLib.Skype(); objSkype.Attach(7,true); objCallOne = objSkype.PlaceCall(quot;testquot;,quot;quot;,quot;quot;,quot;quot;); while (objCallOne.Status != SKYPE4COMLib.TCallStatus.clsInProgress){ } objCallOne.Hold(); objCallTwo = objSkype.PlaceCall(quot;echo123quot;, quot;quot;, quot;quot;, quot;quot;); while (objCallTwo.Status != SKYPE4COMLib.TCallStatus.clsInProgress){} objCallTwo.Join(objCallOne.Id);
  • 15. Coding with the COM API— A Few Practical Tips Timeout property • • Client object • Application object • Skype object
  • 16. Java Wrapper Java power • • Entire wrapper is open source • Write once, run on Windows/Mac/Linux
  • 17. Java Example package com.skype.sample; • import com.skype.ChatMessage; • import com.skype.ChatMessageAdapter; • import com.skype.Skype; • import com.skype.SkypeException; • public class AutoAnswering { • public static void main(String[]args)throws Exception { • Skype.setDeamon(false); // to prevent exiting from this program • Skype.addChatMessageListener(new ChatMessageAdapter() { • public void chatMessageReceived(ChatMessage received)throws SkypeException { • if (received.getType().equals(ChatMessage.Type.SAID)) { • received.getSender().send(quot;I'm working. Please, wait a moment.quot;); • } • } • }); • } • } •
  • 18. URIs Since Skype 1.4 skype: links have been • supported • Can be used on any Web page or in any application that supports hyperlinks • No authorization required • Skype MS Office toolbar + Skype Web plug-ins only use URIs
  • 20. Phone Number Manipulation—PNR Advanced text parsing algorithm • • Phone numbers Find – Validate – Analyze – ActiveX • • Country selectors, flags and dropdowns
  • 21. Web • See online status for any Skype user • Presence information drives communication
  • 22. Web Presence—SkypeWeb 1.1 mystatus.skype.com/SkypeUserName • Localized in ten languages • Five image formats • skypeName.mystatus.skype.com DNS query option •
  • 23. Skype COM via Javascript Windows-based ActiveX-component • Internet Explorer only • Skype client needs to be installed • <html> <body> <object id=Skype name=Skype height=0 width=0 classid=clsid:830690FC-BF2F-47A6-AC2D-330BCB402664 codebase=quot;http://www.yoursite.com/Skype4COM.dllquot; > <span style=quot;color: redquot;>Failed to load control.</span> </object> </body> </html>
  • 24. Building a Skype Extra Skype Extras SDK • • Software distribution and DRM-system • Distribute many types of applications Exe – DLL – DHTML – Java – SDK embeds your application • into Skype-distribution package
  • 25. Skype Extra SDK & Publishing Studio
  • 26. Other Tools SkypeTracer • • Skype icons • Skype strings • SkypeCasts javascript
  • 27. Q&A Contact information: Peter Kalmström Skype:peter.kalmstrom.nu
  • 28. Thank you! Please give your completed session evaluation to the room monitor as you exit. Your feedback is extremely valuable to us! developer.skype.com Sharing is good Localization is vital Certification paths Questions? To learn more, visit pages.ebay.com/devcon/