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
Much like the request matching issue, a problem occurs when we want to add additional events to be processed to the existing SipPhone instance.
We cannot do this without inheriting SipPhone, which has a specific flow for processing NOTIFY requests:
validate request -> process if event is (conference | refer | presence | send bad request) -> else orphaned event error (call or transaction does not exist).
Because the middle step isso heavily cemented into the processNotify method of SipPhone, it is hard to intercept and extend this flow, and add new event packages to be processed.
The text was updated successfully, but these errors were encountered:
Much like the request matching issue, a problem occurs when we want to add additional events to be processed to the existing SipPhone instance.
We cannot do this without inheriting SipPhone, which has a specific flow for processing NOTIFY requests:
validate request -> process if event is (conference | refer | presence | send bad request) -> else orphaned event error (call or transaction does not exist).
Because the middle step isso heavily cemented into the processNotify method of SipPhone, it is hard to intercept and extend this flow, and add new event packages to be processed.
The text was updated successfully, but these errors were encountered: