Anthares
Anthares

Reputation: 1059

Any good SIP library for C#?

Does anyone know if there is any good library around that can be used to easily build a SIP softphone?

Upvotes: 1

Views: 3557

Answers (1)

jnielsen
jnielsen

Reputation: 202

Konnetic provide fully managed SIP (and MSRP if you want messaging) components for .NET development. Their .NET SIP SDK is probably the most comprehensive and is aimed at clients.

Otherwise, Microsoft's Lync server comes with a very good managed SIP library, available here: http://www.microsoft.com/en-us/lync/default.aspx Although you are tied to Lync server.

If you want a stateless solution consider http://www.independentsoft.com/

There are a number of C# libraries that are wrappers around C++ libs eg. http://sites.google.com/site/sipekphone/pjsipwrapper uses pjSIP underneath.

Upvotes: 2

Related Questions