i tested with my old b2bua test app below and indeed sems did not update caller with a re-invite after it got 200 ok from callee. this was with Sip Express Media Server (1.1.0-dev-r1287M (i386/linux)).
-- juha more b2bua.py from log import * from ivr import * WELLCOME_MSG = "/home/jh/test/gong.wav" CALLEE_URI = "sip:[email protected]" class IvrDialog(IvrDialogBase): def onSessionStart(self, hdrs): info("starting b2bua test ...") self.setNoRelayonly() self.welcome_msg = IvrAudioFile() self.welcome_msg.open(WELLCOME_MSG, AUDIO_READ) self.enqueue(self.welcome_msg,None) def onEmptyQueue(self): info("connecting " + CALLEE_URI + " to " + CALLEE_URI) self.disconnectMedia() self.mute() self.connectCallee(CALLEE_URI, CALLEE_URI) return def onBye(self): self.terminateOtherLeg() self.stopSession() _______________________________________________ Semsdev mailing list [email protected] http://lists.iptel.org/mailman/listinfo/semsdev
