Examples of terminateOnBye()


Examples of javax.sip.Dialog.terminateOnBye()

        //create Dialog and attach SBB to the Dialog Activity
        ActivityContextInterface daci = null;
        try {
            Dialog dialog = sipProvider.getNewDialog(evt.getServerTransaction());
            dialog.terminateOnBye(true);
            daci = acif.getActivityContextInterface(dialog);
            daci.attach(sbbContext.getSbbLocalObject());
        } catch (Exception e) {
            logger.error("Error during dialog creation", e);
            respond(evt, Response.SERVER_INTERNAL_ERROR);
View Full Code Here

Examples of javax.sip.Dialog.terminateOnBye()

      if (logger.isDebugEnabled()) {
        logger
            .debug("Obtained dialog in onThirdPCCTriggerEvent : callId = "
                + dialog.getCallId().getCallId());
      }
      dialog.terminateOnBye(true);
      calleeSession.setDialog(dialog);
      sa.setCalleeSession(calleeSession);

      /**
       * Actually callerSession is not required for this example and clean
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.