快速业务通道

使用SIP Servlet为Java EE添加语音功能 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-16
t;sailfin-install-home>/samples/sipservlet/CallSetup 目录 ,其中 <sailfin-install-home> 是安装 SailFin 的目录。

CallSetup 应用程序使用 SIP servlet 和 HTTP servlet 来提供 VoIP 电话服务。该应用程序借助背靠背用户代理(Back-to-Back User Agent,B2BUA)SIP servlet 来建立 VoIP 呼叫。B2BUA 单独调用每个用户代理,然后将它们连接起来,从而在两个用户代理之间建立呼叫。

CallSetup 组件

CallSetup 包括以下组件:

Registration.java。一个表示注册用户的 Plain Old Java Object (POJO)。

RegistrarServlet。一个允许用户注册的 SIP servlet。该 servlet 还用于在与 SailFin 绑定的 Java DB 数据库中持久化用户数据。

RegistrationBrowserServlet.java。一个 HTTP Servlet,提供了一个接口用于选择呼叫的注册用户。

SipCallSetupServlet.java。一个将 INVITE 消息发送到第一个用户 (UserB) 的 HTTP Servlet。

B2BCallServlet.java。该 SIP Servlet 处理来自第一个用户的响应并与第二个用户(User A)建立呼叫。

web.xml。HTTP servlet 的部署描述符。

sip.xml。SIP servlet 的部署描述符。

sun-web.xml。一个特定于产品的部署描述符。

persistence.xml。定义持久单元。

使用SIP Servlet为Java EE添加语音功能(4)

时间:2011-07-18 Prasad Subramanian

图 4 展示了应用程序的执行顺序。

使用SIP Servlet为Java EE添加语音功能 - 编程入门网

图 4. CallSetup 的执行顺序

让我们看一看构成 CallSetup 的组件中的一些代码。此处未显示应用程序的所有组件,也没显示每个组件中的所有代码。建议在 SailFin 下载中研究应用程序的完整代码。

RegistrarServlet.java

当用户代理发送 REGISTER 请求时,doRegister() 方法将被调用并存储注册数据。然后将一个带有状态码的响应发送给用户代理。

import com.ericsson.sip.Registration; @PersistenceContext(name = "persistence/LogicalName", unitName = "EricssonSipPU") public class RegistrarServlet extends SipServlet{    The PersistenceUnit annotation is used to annotate the EntityManagerFactory with the name of the PU to be used.    @PersistenceUnit(unitName = "EricssonSipPU")    private EntityManagerFactory emf;    The Resource annotation is used to inject the UserTransaction    @Resource    private UserTransaction utx;    protected void doRegister(SipServletRequest request) throws ServletException, IOException {      SipServletResponse response = request.createResponse(200);      try {        The SipServletRequest object is parsed to get to address and request headers. The Contact header is obtained and stored in the database        SipURI to = cleanURI((SipURI) request.getTo().getURI());        ListIterator<Address> li = request.getAddressHeaders("Contact");        while (li.hasNext()){          Address na = li.next();          SipURI contact = (SipURI) na.getURI();          logger.log(Level.FINE, "Contact = " + contact);          An EntityManager object is created for storing the user data.          EntityManager em = emf.createEntityManager();          try {              utx.begin();              Registration registration = new Registration();              registration.setId

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号