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
Hold or resume for incoming SIP NOTIFY messages:
◆ A NOTIFY with the 'talk' event in early dialog triggers the softphone to accept a call
(OK response to NOTIFY followed by an OK response to INVITE).
◆ A NOTIFY with the 'hold' event during a call triggers the softphone to hold the call
(OK response to a received NOTIFY and INVITE request for hold).
◆ A NOTIFY with the 'talk' event during a held call triggers the softphone to send a
re-INVITE to resume the call (OK response to a received NOTIFY and INVITE request
to resume call).
My upstream sip server is configured as 3rd party call control which sends a SIP NOTIFY to sip endpoint to answer the call, hold and resume calls.
Any idea how to go about and implement this?
Thanks,
The text was updated successfully, but these errors were encountered:
This is the subscription NOTIFY handler: web_hook_on_notify(ContentType, buddyObj, notification.request.body) event built in, but as I mentioned, you have to be subscribed first.
Browser Phone also supports Out-of-Dialog messages:
This is the handler for this message: web_hook_on_message(message); But in looking at the code now, I see it rejects the message if it doesn't recognize it.
Either you would have to make your own branch, and maintain it. In this branch you would add additional handling of the notify event for you own needs, or try the events above.
If you have more documents or an RFC for the notify messages we can try support it.
Hold or resume for incoming SIP NOTIFY messages:
◆ A NOTIFY with the 'talk' event in early dialog triggers the softphone to accept a call
(OK response to NOTIFY followed by an OK response to INVITE).
◆ A NOTIFY with the 'hold' event during a call triggers the softphone to hold the call
(OK response to a received NOTIFY and INVITE request for hold).
◆ A NOTIFY with the 'talk' event during a held call triggers the softphone to send a
re-INVITE to resume the call (OK response to a received NOTIFY and INVITE request
to resume call).
My upstream sip server is configured as 3rd party call control which sends a SIP NOTIFY to sip endpoint to answer the call, hold and resume calls.
Any idea how to go about and implement this?
Thanks,
The text was updated successfully, but these errors were encountered: