3

I need to write a Webpart (in Sharepoint 2010) which should be able to read the chat history in Skype. To achieve this goal I have to use the Skype API. All tutorials that I've seen use wrappers.

Question: How can I access the Skype API without wrappers?

Flip
  • 6,233
  • 7
  • 46
  • 75
Alexandr
  • 5,460
  • 4
  • 40
  • 70

2 Answers2

3

To interact with skype API I have to use SKYPE4COM, but skype client should be launched to make your code work.

Alexandr
  • 5,460
  • 4
  • 40
  • 70
2

what about accessing skype db like in this answer. https://stackoverflow.com/a/1941233/880434


EDIT

SKYPE4COMLib will help you to do this.

Community
  • 1
  • 1
Chamika Sandamal
  • 23,565
  • 5
  • 63
  • 86
  • Thanks for your reply. In my web part I don't have access to the local machine and get main.db file because of this I am considering to get history using API. P.S. Second your link doesn't work – Alexandr Jul 09 '12 at 08:03