tadhack 2015 webinar oracle comms & optare

15
tadhack.optaresoluons.com

Upload: alan-quayle

Post on 15-Jul-2015

609 views

Category:

Technology


3 download

TRANSCRIPT

tadhack.optaresolutions.com

Add easily telecom

services to your APP

Messaging

Payment

Location

WebRTC:Add audio and

video to your app or web

SampleWebRTC

App

<script src="https://tadkhack.optaresolutions.com/togetherjs-min.js"></script>

<button onclick="TogetherJS(this); return false;">Start</button>

Add the JavaScript snippet

Add the HTML button

Industry-standard SIP

servlet, media control, Java EE, and IMS

SIPp for testing basic

functionality

@SipServletpublic class B2bTerminatorServlet extends SipServlet { ... @Override protected void doInvite(SipServletRequest req) throwsServletException, IOException { B2buaHelper b2b = req.getB2buaHelper(); SipServletRequest other = b2b.createRequest(req, true, null); copyContent(req, other); other.send(); log("Initial Invite! " + req.getHeader("Cseq")); } ...}

Example SipServlet

Example SIP POJO@SipServletpublic class FooPOJO {

@Invite public void incomingCall(SipServletRequest request) { //... }

@Bye public void disconnectCall(SipServletResponse response) { //... }

} JSR-359

SampleSIP-Server

App