You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
protectedbooleaninitiateOutgoingCall(StringfromUri, StringtoUri, StringviaNonProxyRoute,
MessageListenerrespListener, ArrayList<Header> additionalHeaders,
ArrayList<Header> replaceHeaders, Stringbody) {
..
URIrequest_uri = addr_factory.createURI(toUri);
if (request_uri.isSipURI() == false) {
setReturnCode(SipSession.UNSUPPORTED_URI_SCHEME);
setErrorMessage("URI " + toUri + " is not a Sip URI");
returnfalse;
}
..
}
Godspeed
Tomasz Krzysztof Zieleniewski
The text was updated successfully, but these errors were encountered:
To do that it requires my employee assignment. We are contributing as ProIDS team.
At the moment I am to much involved in other activities.
So considering my contribution I deem this is to be done but not now.
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.
Godspeed
Tomasz Krzysztof Zieleniewski
The text was updated successfully, but these errors were encountered: