void makeCall(String address, int ringSecs)

Starts a call. KioWare will attempt to call onSIPCallEstablished() on your page when a connection is established, if applicable.

Security

ACL Protected

Parameters

Name Description
address String
The address to call.
ringSecs int
The seconds to ring before ending an unanswered call.

Return

Void

Examples


//SIP addresses should take the following format:
//sip:@:
var myUsername = 'myUsername';
var myDomain = 'myDomain';
var myPort = 5060;
var address = 'SIP:'+myUsername+'@'+myDomain+':'+myPort;
var timeout = 35;
KioSIP.makeCall(address, timeout);
    

Requirements

KioWare for Android version 3.17 or greater.