-
Notifications
You must be signed in to change notification settings - Fork 31
Open
Labels
Description
Hi,
I'd like to request the addition of the Tel URI support to the SipCall class.
The current implementation returns with the "Unsupported URI Scheme" error, when the Tel URI string is provided as the toUri parameter in initiateOutgoingMessage and initiateOutgoingCall methods.
protected boolean initiateOutgoingCall(String fromUri, String toUri, String viaNonProxyRoute,
MessageListener respListener, ArrayList<Header> additionalHeaders,
ArrayList<Header> replaceHeaders, String body) {
..
URI request_uri = addr_factory.createURI(toUri);
if (request_uri.isSipURI() == false) {
setReturnCode(SipSession.UNSUPPORTED_URI_SCHEME);
setErrorMessage("URI " + toUri + " is not a Sip URI");
return false;
}
..
}Godspeed
Tomasz Krzysztof Zieleniewski