使用SIP Servlet为Java EE添加语音功能 - 编程入门网
(to.toString());
registration = em.merge(registration);
em.remove(registration);
utx.commit();
logger.log(Level.FINE, "Registration was successfully created.");
} catch (Exception ex) {
try {
utx.rollback();
} catch (Exception e) {
}
}
em.close();
If the registration is successful , a response code of 200 OK is sent
response.send();
} catch(Exception e) {
If the registration is not successful , a response code of 500 is sent
response.setStatus(500);
response.send();
}
}
使用SIP Servlet为Java EE添加语音功能(5)时间:2011-07-18 Prasad SubramanianRegistrationBrowserServlet.java 这是一个 HTTP Servlet,它提供了一个接口,用于列出注册用户并在两个注册用户之间建立呼叫。
SipCallSetupServlet.java 此 HTTP Servlet 通过 RegistrationBrowserServlet 调用,其行为类似于 B2BUA 在两个用户之间建立呼叫。
|
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |