java 当前流行的Java SIP 库是什么?
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/498043/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
What is the currently popular Java SIP library?
提问by ahanson
I'm working on developing a SIP application in Java and wondering what is the most used SIP library currently.
我正在用 Java 开发 SIP 应用程序,想知道目前最常用的 SIP 库是什么。
MJSIP?
麻省理工学院?
采纳答案by Adeel Ansari
As far as I know, its JAIN-SIP. Its good to know about MjSip, by the way. You might be interested in looking at JBoss Mobicent, the user guide is not complete at the moment. and you wouldn't find much help on Mobicent.
据我所知,它的JAIN-SIP。顺便说一下,很高兴了解 MjSip。您可能有兴趣查看JBoss Mobicent,用户指南目前不完整。而且您在 Mobicent 上找不到太多帮助。
Or as metadaddystated here, "You might want to take a look at SailFin- its a SIP servlet container built by Ericsson using GlassFish."
或者正如这里的metadaddy所说,“您可能想看看SailFin- 它是 Ericsson 使用GlassFish构建的 SIP servlet 容器。”
回答by metadaddy
回答by Diepie
There is a great SIP stack called Pjsip, which is written in C, but there is a JNI wrapperavailable, so SIP-specific C functions can be called directly from Java through JNI. It is possible to define callback methods, which can be implemented in your Java application.
有一个名为Pjsip的很棒的 SIP 堆栈,它是用 C 编写的,但是有一个 JNI包装器可用,因此可以通过 JNI 从 Java 直接调用特定于 SIP 的 C 函数。可以定义回调方法,这些方法可以在您的 Java 应用程序中实现。
Possible performance improvements, code reusablilty (e.g. on Android and iPhone) and active development community are the main benefits for this stack.
可能的性能改进、代码可重用性(例如在 Android 和 iPhone 上)和活跃的开发社区是该堆栈的主要好处。
An Android SIP VOIP client, CSipSimpleuses this stack, you can have a look at it.
一个Android SIP VOIP客户端,CSipSimple使用了这个栈,你可以看看。
回答by yohann.martineau
回答by GeorgeVagenas
JainSip sip stack have proved to be mature and complete. Mobicents platformis a mature platform which using the Jain Sip stack with big active community.
JainSip sip stack 已被证明是成熟和完整的。Mobicents 平台是一个成熟的平台,它使用 Jain Sip 堆栈,拥有庞大的活跃社区。

