How can I integrate Lync 2010, with a program that does a DB look up and shows a small popup, with the information found, and also a few buttons with some options. The program is already running with some other types of phone systems, I kind of need a connector for Lync. I don't want to put a tab or other UI inside Lync. --Martin
feedback
|
|
You'll need to start with the Lync SDK. You can build your app as a Winforms or WPF app. Signing In To connect and sign in to the running instance of Lync, check out this page from the SDK. Make sure you keep a reference to the Detecting an incoming call To detect an incoming call, you can listen for the To determine if the call is a) an Audio call, and b) incoming (as opposed to an outgoing call placed by the user) you can use the following method:
In the You can then make your DB call and pop your info. Edit: I've written a blog post about screen pops which goes into much more detail - here Placing a call If your app is WPF, the easiest way to allow a call to be placed is by using the StartAudioCallButton control. Otherwise, the instructions here should help. | |||||||||||
feedback
|