我正在尝试使用此代码从sipStack
创建sipFactory
:
this.sipFactory = SipFactory.getInstance();
this.sipFactory.setPathName("gov.nist");
// Create and set the SIP stack properties.
this.properties = new Properties();
this.properties.setProperty("javax.sip.STACK_NAME", "stack");
// Create the SIP stack.
this.sipStack = this.sipFactory.createSipStack(this.properties);
但是我得到一个例外,“SipStackImpl”无法实例化,我应该检查是否设置了路径名,即使我确实有那个在同一个包中实现SipStack接口的类。
我错过了什么?我该如何创建sip堆栈?
答案 0 :(得分:0)