Re: [OpenSIPStack] SUBSCRIBE and MWI
Brought to you by:
joegenbaclor
From: Jamieson, W. W <jam...@RL...> - 2009-04-22 14:19:53
|
Thanks. I put the PSyncPoint in the ClientSession class of the demo so it was accessible to Main (through the session variable) and to the ClientSession functions (OnTimerExpire and OnIncomingSIPMessage). The Process class already had a PSyncPoint, it's used to signal when the process is terminated. -Bill -----Original Message----- From: Joegen Baclor [mailto:joe...@gm...] Sent: Tuesday, April 21, 2009 9:12 PM To: 'Joegen Baclor'; ope...@li... Subject: Re: [OpenSIPStack] SUBSCRIBE and MWI You can use a PSyncPoint as a member variable of the Process class. PSyncPoint m_ExitSync; . . . m_ExitSync.Wait(); // <--- Just signal this anywhere you like in the code. m_UAC->Terminate(); m_UAS->Terminate(); delete m_UAC; delete m_UAS; -------------------------------------------------- From: "Jamieson, William W" <jam...@RL...> Sent: Wednesday, April 22, 2009 8:04 AM To: "'Joegen Baclor'" <jb...@so...>; <ope...@li...> Subject: Re: [OpenSIPStack] SUBSCRIBE and MWI > No, I haven't needed to do subscribes with my MWI implementation. > > With the new MWI code that joegen put in samples, it there an event > that can be used in a WaitForXXX in place of the Sleep that he has - > like maybe the two events that fire OnTimerExpire and the client > OnIncomingSIPMessage? I know I could do CreateEvent() \ SetEvent() for > both but don't want to if I could grab existing ones to wait on - just > not sure how it's done. > > -Bill > > -----Original Message----- > From: Joegen Baclor [mailto:joe...@gm...] > Sent: Tuesday, April 21, 2009 3:47 PM > To: ope...@li... > Subject: Re: [OpenSIPStack] SUBSCRIBE and MWI > > No not yet. Perhaps Bill and Mathias could help it see the light. > > -------------------------------------------------- > From: "Ramu" <con...@gm...> > Sent: Wednesday, April 22, 2009 1:36 AM > To: <ope...@li...> > Subject: [OpenSIPStack] SUBSCRIBE and MWI > >> Hi, >> >> Does OpenSBC support SUBCRIBE message for MWI notification? >> >> Please do let know how can setup SBC to forward SUBSCRIBE message. >> We setup SBC in UpperRegistration mode. >> >> Thanks, >> Ramu >> --------------------------------------------------------------------- >> - >> -------- Stay on top of everything new and different, both inside and >> around Java (TM) technology - register by April 22, and save $200 on >> the JavaOne (SM) conference, June 2-5, 2009, San Francisco. >> 300 plus technical and hands-on sessions. Register today. >> Use priority code J9JMT32. http://p.sf.net/sfu/p >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > >> >> No virus found in this incoming message. >> Checked by AVG - www.avg.com >> Version: 8.0.238 / Virus Database: 270.12.1/2070 - Release Date: >> 04/20/09 17:56:00 >> > > ---------------------------------------------------------------------- > -------- Stay on top of everything new and different, both inside and > around Java > (TM) technology - register by April 22, and save $200 on the JavaOne > (SM) conference, June 2-5, 2009, San Francisco. > 300 plus technical and hands-on sessions. Register today. > Use priority code J9JMT32. http://p.sf.net/sfu/p > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > ---------------------------------------------------------------------- > -------- Stay on top of everything new and different, both inside and > around Java (TM) technology - register by April 22, and save $200 on > the JavaOne (SM) conference, June 2-5, 2009, San Francisco. > 300 plus technical and hands-on sessions. Register today. > Use priority code J9JMT32. http://p.sf.net/sfu/p > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > No virus found in this incoming message. > Checked by AVG - www.avg.com > Version: 8.0.238 / Virus Database: 270.12.1/2070 - Release Date: > 04/20/09 17:56:00 > ------------------------------------------------------------------------------ Stay on top of everything new and different, both inside and around Java (TM) technology - register by April 22, and save $200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco. 300 plus technical and hands-on sessions. Register today. Use priority code J9JMT32. http://p.sf.net/sfu/p _______________________________________________ opensipstack-devel mailing list ope...@li... https://lists.sourceforge.net/lists/listinfo/opensipstack-devel |