opensipstack-devel Mailing List for OpenSIPStack (Page 62)
Brought to you by:
joegenbaclor
You can subscribe to this list here.
2006 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
(5) |
Jun
(12) |
Jul
(4) |
Aug
(3) |
Sep
(24) |
Oct
(45) |
Nov
(41) |
Dec
(67) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(51) |
Feb
(93) |
Mar
(54) |
Apr
(76) |
May
(114) |
Jun
(133) |
Jul
(124) |
Aug
(180) |
Sep
(53) |
Oct
(41) |
Nov
(109) |
Dec
(92) |
2008 |
Jan
(52) |
Feb
(40) |
Mar
(29) |
Apr
(40) |
May
(83) |
Jun
(68) |
Jul
(30) |
Aug
(72) |
Sep
(50) |
Oct
(48) |
Nov
(25) |
Dec
(80) |
2009 |
Jan
(9) |
Feb
(2) |
Mar
(32) |
Apr
(67) |
May
|
Jun
(7) |
Jul
(7) |
Aug
(4) |
Sep
(3) |
Oct
|
Nov
(6) |
Dec
(2) |
2010 |
Jan
|
Feb
(4) |
Mar
|
Apr
|
May
(10) |
Jun
(2) |
Jul
|
Aug
(2) |
Sep
(1) |
Oct
|
Nov
(5) |
Dec
|
2011 |
Jan
|
Feb
|
Mar
(1) |
Apr
(2) |
May
(2) |
Jun
|
Jul
|
Aug
(5) |
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Joegen E. B. <jb...@so...> - 2007-05-30 12:21:40
|
Try using the SoftPhoneSIPEndPoint CallBacks instead. Example: virtual void OnDisconnected( CallSession & session, const SIPMessage & msg ); You can either use the SIP Message to get the to and From URI's or use CallSession Accessors such as: PINLINE const SIPURI & GetLocalURI()const{ return m_LocalURI; }; // from URI to be used for request PINLINE const SIPURI & GetRemoteURI()const{ return m_RemoteURI; }; // to URI to be used for requests PINLINE const SIPURI & GetTargetURI()const{ return m_TargetURI; };/// the startline URI to use for requests Joegen H.Kropf wrote: > I try to use OSS in SIP-client application. > One problem: > > =========================================== > SoftPhone.cpp > =========================================== > void SoftPhoneManager::OnClearedCall(OpalCall & call) > { > PString remoteName = '"' + call.GetPartyB() + '"'; > switch (call.GetCallEndReason()) > { > case OpalConnection::EndedByRemoteUser : > std::cout << remoteName << " has cleared the call"; > break; > ........ > ........ > } > ........ > ........ > } > =========================================== > > > Why "call.GetPartyB()" return value > "551684e4-cdf8-1810-9807-c2555659a538" instead "sip:co...@se..." ? > > In "OpalManager::SetUpCall(...)" variable "OpalCall::partyB" retrieve > value "sip:co...@se..." > > > =========================================== > opal / manager.cxx > =========================================== > BOOL OpalManager::SetUpCall(const PString & partyA, > const PString & partyB, > PString & token, > void * userData) > { > PTRACE(3, "OpalMan\tSet up call from " << partyA << " to " << partyB); > > OpalCall * call = CreateCall(); > token = call->GetToken(); > > call->SetPartyB(partyB); > ........ > ........ > } > =========================================== > > > But in "OpalCall::OnAlerting".... > > > =========================================== > opal / call.cxx > =========================================== > BOOL OpalCall::OnAlerting(OpalConnection & connection) > { > PTRACE(3, "Call\tOnAlerting " << connection); > > BOOL ok = FALSE; > > if (!LockReadWrite()) > return FALSE; > > partyB = connection.GetRemotePartyName(); > ........ > ........ > } > =========================================== > > > After "OnAlerting()", value of "partyB" is > "551684e4-cdf8-1810-9807-c2555659a538" > > Is there any way to getting NORMAL remoteName ? > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > |
From: Ilian J. C. P. <ip...@so...> - 2007-05-30 09:53:15
|
Hi all, I have exposed the setting of silence detection mode and audio jitter delay in ATLSIP and SoftPhoneInterface. Here are the methods: DisableSilenceDetection() - Disables silence detection. Disables CNG as well. EnableFixedSilenceDetection( ULONG threshold ) - Enables fixed silence detection. Any sound level below the threshold is treated as silence (and CN is generated as a result). Don't use too high threshold values or you'll only hear comfort noise. Try threshold=3 as suggested by Whit in another thread. EnableFixedSilenceDetectionEx( ULONG threshold , ULONG signalDeadband, ULONG silenceDeadband ) - An extended version of the previous method. Don't tinker with this unless you know what you're doing. For reference on how signalDeadband and silenceDeadband are used, look in OpalSilenceDetector::ReceivedPacket(). EnableAdaptiveSilenceDetection( ULONG adaptivePeriod ) - Enables an adaptive silence detection. Supposedly this enables the threshold to *adapt* to the current sound level every adaptivePeriod milliseconds. However, its silence detection doesn't seem to be very effective (at least in my machine). I'll look into this further to see what's wrong. This mode with adaptivePeriod=4800 is the default mode for ATLSIP. EnableAdaptiveSilenceDetectionEx( ULONG adaptivePeriod, ULONG signalDeadband, ULONG silenceDeadband ) - An extended version of the previous method. Don't tinker with this unless you know what you're doing. For reference on how signalDeadband and silenceDeadband are used, look in OpalSilenceDetector::ReceivedPacket(). SetAudioJitterDelay( ULONG minDelay, ULONG maxDelay ) - Sets audio jitter delay settings. Regards, Ilian Ilian Jeri C. Pinzon wrote: > Will prioritize this request. This should be available by tomorrow or on > early Thursday tops. > > Regards, > Ilian > > Joegen E. Baclor wrote: > >> Hi Ilian, >> >> Can you provide an ETC for exposing Jitter and Silent Detection params >> in ATLSIP? Seems like a popular request. >> >> Joegen >> >> >> Ilian Jeri C. Pinzon wrote: >> >> >>> Hi, >>> >>> We haven't exposed this yet but we will soon. Please wait for updates >>> in this list. >>> >>> For the meantime, please refer to the attached email on how this can >>> be done. >>> >>> Thanks. >>> >>> Regards, >>> Ilian >>> >>> Yacine Auczone wrote: >>> >>> >>>> Hi All, >>>> First, Thanks a lot for all the great job you are doing for >>>> OpenSipStack and AtlSIP >>>> I'm doing some devlopement test with the Softphone ActiveX, the >>>> quality is very good and no bugs detected, the only thing is that the >>>> softphone is doing by default some VAD and it is not transmiting the >>>> silence, so there is no Comfort Noise generation sent whene the >>>> calling party stop talking. i heard about a new ActiveX version which >>>> will be available and gives the option to enable or disable CNG, is it >>>> ready? if yes can i have it please? >>>> Other Thing, on my Asterisk Server only G729 Work and not G729A >>>> What's Wrong ? >>>> >>>> >>>> >>>> >>>> ------------------------------------------------------------------------ >>>> Avec Windows Live Spaces, publiez directement des messages >>>> électroniques sur votre blog ou ajoutez-y des photos, des blagues et >>>> d'autres infos. C'est gratuit ! >>>> <http://clk.atdmt.com/MSN/go/msnnksac0030000001msn/direct/01/?href=http://www.imagine-msn.com/spaces> >>>> >>>> ------------------------------------------------------------------------ >>>> >>>> ------------------------------------------------------------------------- >>>> >>>> This SF.net email is sponsored by DB2 Express >>>> Download DB2 Express C - the FREE version of DB2 express and take >>>> control of your XML. No limits. Just data. Click to get it now. >>>> http://sourceforge.net/powerbar/db2/ >>>> ------------------------------------------------------------------------ >>>> >>>> _______________________________________________ >>>> opensipstack-devel mailing list >>>> ope...@li... >>>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>>> >>>> ------------------------------------------------------------------------ >>>> >>>> No virus found in this incoming message. >>>> Checked by AVG Free Edition. Version: 7.5.472 / Virus Database: >>>> 269.8.1/822 - Release Date: 5/28/2007 11:40 AM >>>> >>>> >>>> >>> ------------------------------------------------------------------------ >>> >>> Subject: >>> [Fwd: Re: [OpenSIPStack] Audio problems - Jitter and Comfort Noise] >>> From: >>> "Joegen E. Baclor" <joe...@gm...> >>> Date: >>> Tue, 29 May 2007 18:26:21 +0800 >>> To: >>> "Ilian Jeri C. Pinzon" <ip...@so...> >>> >>> To: >>> "Ilian Jeri C. Pinzon" <ip...@so...> >>> >>> >>> >>> >>> ------------------------------------------------------------------------ >>> >>> Subject: >>> Re: [OpenSIPStack] Audio problems - Jitter and Comfort Noise >>> From: >>> "Joegen E. Baclor" <joe...@gm...> >>> Date: >>> Thu, 12 Apr 2007 16:40:04 +0800 >>> To: >>> ope...@li... >>> >>> To: >>> ope...@li... >>> >>> >>> Whit, >>> >>> Good to hear you nailed it! Can't wait to see your contributions if >>> you get the chance to expose the other setters/accessors in ATLSIP. >>> >>> >>> >>> Whit Thiele wrote: >>> >>> >>>> Joegen, >>>> >>>> Thanks for the help. I thought I'd send the list an update on what >>>> solved my >>>> problem. I changed the Silence Detector to Fixed with a threshold of >>>> 3. This >>>> eliminated all the problems! It seems that the adaptive silence >>>> detector was >>>> constantly incrementing and started affecting things about 10-15 seconds >>>> into a conversation! >>>> >>>> I'll probably put in the ability to change the jitterbuffer and silence >>>> detector into the ATLSIP library and send this in to the project in >>>> the next >>>> couple weeks... >>>> >>>> >>>> Whit >>>> >>>> >>>> >>>> -----Original Message----- >>>> From: ope...@li... >>>> [mailto:ope...@li...] On Behalf Of >>>> Joegen E. Baclor >>>> Sent: Tuesday, April 10, 2007 9:36 PM >>>> To: ope...@li... >>>> Subject: Re: [OpenSIPStack] Audio problems - Jitter and Comfort Noise >>>> >>>> Whit, >>>> >>>> It is probably best to ask this question to >>>> ope...@li.... However, here's how to set >>>> the silence detection in code. >>>> >>>> >>>> >>>> OpalSilenceDetector::Param param; >>>> param.Mode = OpalSilenceDetector::NoSilenceDetection; >>>> sfManager.SetSilenceDetectParams( params ); >>>> >>>> >>>> >>>> >>>> Hope that helps. >>>> >>>> de...@wh... wrote: >>>> >>>> >>>> >>>>> Joegen, >>>>> >>>>> Thanks for the reply. I've been trying different jitterbuffer >>>>> settings as >>>>> >>>>> >>>>> >>>> well >>>> >>>> >>>> >>>>> as changing the number soundChannelBuffers to a number of different >>>>> >>>>> >>>>> >>>> settings >>>> >>>> >>>> >>>>> which I came across in some online >>>>> Opal documentation ( >>>>> >>>>> >>>>> >>>>> >>>> http://www.openh323.org/pipermail/openh323/Week-of-Mon-20051219/076004.html >>>> >>>> ) >>>> >>>> >>>> >>>>> I've tried setting the jitter buffer to minimums 25 through to 500 >>>>> and the >>>>> >>>>> >>>>> >>>> depth >>>> >>>> >>>> >>>>> to as high as 15 but nothing is helping. As I described before, I >>>>> can get >>>>> >>>>> >>>>> >>>> about >>>> >>>> >>>> >>>>> 10-15 consecutive seconds of decent voice quality and then it gets very >>>>> >>>>> >>>>> >>>> choppy. >>>> >>>> >>>>> Is anyone else experiencing this? >>>>> >>>>> I am wondering if it may have something to do with the Silence >>>>> detection >>>>> >>>>> >>>>> >>>> portion >>>> >>>> >>>> >>>>> of Opal. I've noticed in the opal.log file that the Silence Threshold >>>>> >>>>> >>>>> >>>> creeps >>>> >>>> >>>> >>>>> upwards the longer the person talks. Is there a way to disable the >>>>> silence >>>>> detector? I could see that there are several Modes (Fixed, Adaptive, >>>>> etc) >>>>> >>>>> >>>>> >>>> for >>>> >>>> >>>> >>>>> it but I can't figure out where this is initialized in the code. >>>>> I may be on the wrong track but I can't figure out this strange >>>>> behavior. >>>>> Any help/ideas/suggestions would be greatly appreciated! >>>>> >>>>> Whit >>>>> >>>>> >>>>> >>>>> >>>>> >>>>> >>>>> >>>>> -----Original Message----- >>>>> From: ope...@li... >>>>> [mailto:ope...@li...] On Behalf Of >>>>> >>>>> >>>>> >>>> Joegen >>>> >>>> >>>> >>>>> E. Baclor >>>>> Sent: Monday, April 09, 2007 5:19 AM >>>>> To: ope...@li... >>>>> Subject: Re: [OpenSIPStack] Audio problems - Jitter and Comfort Noise >>>>> >>>>> de...@wh... wrote: >>>>> >>>>> >>>>> >>>>>> Members, >>>>>> >>>>>> I'm doing some testing with the ATLSIP and opensipstack libraries >>>>>> and so >>>>>> >>>>>> >>>>>> >>>> far >>>> >>>> >>>> >>>>>> with pretty good success. I have written a softphone in C# using the >>>>>> >>>>>> >>>>>> >>>> samples >>>> >>>> >>>> >>>>>> provided, however I have a strange issue which I think is related to >>>>>> >>>>>> >>>>>> >>>> jitter >>>> >>>> >>>> >>>>>> and/or comfort noise: >>>>>> >>>>>> Setup: >>>>>> C# Softphone ----> Asterisk ---> PRI -----> Telco >>>>>> >>>>>> Once I make a call, the system works fine except if the person >>>>>> using the >>>>>> softphone talks for more then about 10-15 seconds (in a row without >>>>>> being >>>>>> interupted). Then, the audio starts to break up and the person on the >>>>>> >>>>>> >>>>>> >>>> telco >>>> >>>> >>>> >>>>>> side can't make out what they are saying. Sometimes this situation is >>>>>> >>>>>> >>>>>> >>>> reversed >>>> >>>> >>>> >>>>>> and the person on the softphone can't make out the person on the telco >>>>>> >>>>>> >>>>>> >>>> side. >>>> >>>> >>>>>> By the way, there aren't any problems with the telco or asterisk >>>>>> setup as >>>>>> >>>>>> >>>>>> >>>> I >>>> >>>> >>>> >>>>>> >>>>>> >>>>>> >>>>> have >>>>> >>>>> >>>>> >>>>>> SIP hardphones using the system with no problems. >>>>>> >>>>>> So my question is: >>>>>> >>>>>> >>>>>> 1. Can I send confort noise during silence breaks? >>>>>> >>>>>> >>>>>> >>>>>> >>>>> CNG is a codec functionality and is not manually generated by the >>>>> stack. >>>>> >>>>> >>>>> >>>>> >>>>> >>>>>> 2. Where can I tweak the jitter-buffer or comfort noise settings? >>>>>> Is this >>>>>> >>>>>> >>>>>> >>>> done >>>> >>>> >>>> >>>>>> >>>>>> >>>>>> >>>>> SoftPhoneManager::SetAudioJitterDelay(). It is not yet exposed an the >>>>> ActiveX properties. Feel free to send in a patch if you get the chance >>>>> to expose it. >>>>> >>>>> >>>>> >>>>> >>>>>> in the code itself? >>>>>> 3. Maybe I'm on the wrong track and any suggestions are welcome! >>>>>> >>>>>> >>>>>> Look forward to working more with everyone on this exciting project! >>>>>> >>>>>> Whit >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> ------------------------------------------------------------------------- >>>>>> >>>>>> Take Surveys. Earn Cash. Influence the Future of IT >>>>>> Join SourceForge.net's Techsay panel and you'll get the chance to >>>>>> share >>>>>> >>>>>> >>>>>> >>>> your >>>> >>>> >>>> >>>>>> opinions on IT & business topics through brief surveys-and earn cash >>>>>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >>>>>> >>>>>> _______________________________________________ >>>>>> opensipstack-devel mailing list >>>>>> ope...@li... >>>>>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>> ------------------------------------------------------------------------- >>>>> >>>>> Take Surveys. Earn Cash. Influence the Future of IT >>>>> Join SourceForge.net's Techsay panel and you'll get the chance to share >>>>> >>>>> >>>>> >>>> your >>>> >>>> >>>> >>>>> opinions on IT & business topics through brief surveys-and earn cash >>>>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >>>>> >>>>> _______________________________________________ >>>>> opensipstack-devel mailing list >>>>> ope...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>>>> >>>>> >>>>> ------------------------------------------------------------------------- >>>>> >>>>> Take Surveys. Earn Cash. Influence the Future of IT >>>>> Join SourceForge.net's Techsay panel and you'll get the chance to share >>>>> >>>>> >>>>> >>>> your >>>> >>>> >>>> >>>>> opinions on IT & business topics through brief surveys-and earn cash >>>>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >>>>> >>>>> _______________________________________________ >>>>> opensipstack-devel mailing list >>>>> ope...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>>>> >>>>> >>>>> >>>>> >>>> ------------------------------------------------------------------------- >>>> >>>> Take Surveys. Earn Cash. Influence the Future of IT >>>> Join SourceForge.net's Techsay panel and you'll get the chance to >>>> share your >>>> opinions on IT & business topics through brief surveys-and earn cash >>>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >>>> >>>> _______________________________________________ >>>> opensipstack-devel mailing list >>>> ope...@li... >>>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>>> >>>> >>>> >>>> ------------------------------------------------------------------------- >>>> >>>> Take Surveys. Earn Cash. Influence the Future of IT >>>> Join SourceForge.net's Techsay panel and you'll get the chance to >>>> share your >>>> opinions on IT & business topics through brief surveys-and earn cash >>>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >>>> >>>> _______________________________________________ >>>> opensipstack-devel mailing list >>>> ope...@li... >>>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>>> >>>> >>>> >>>> >>>> >>> ------------------------------------------------------------------------ >>> >>> No virus found in this incoming message. >>> Checked by AVG Free Edition. >>> Version: 7.5.472 / Virus Database: 269.8.1/822 - Release Date: 5/28/2007 11:40 AM >>> >>> ------------------------------------------------------------------------ >>> >>> ------------------------------------------------------------------------- >>> This SF.net email is sponsored by DB2 Express >>> Download DB2 Express C - the FREE version of DB2 express and take >>> control of your XML. No limits. Just data. Click to get it now. >>> http://sourceforge.net/powerbar/db2/ >>> ------------------------------------------------------------------------ >>> >>> _______________________________________________ >>> opensipstack-devel mailing list >>> ope...@li... >>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>> >>> >>> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by DB2 Express >> Download DB2 Express C - the FREE version of DB2 express and take >> control of your XML. No limits. Just data. Click to get it now. >> http://sourceforge.net/powerbar/db2/ >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> >> >> >> > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > |
From: <jer...@ze...> - 2007-05-30 09:48:22
|
Hi,=20 =20 When can I actualize the OpenSIPStack directory? It's not the first time = that I try to actualize it but no way... =20 Dans C:\Documents and Settings\JCOUNET\My Documents\Visual Studio = 2005\Projects\opensipstack : "C:\Program Files\TortoiseCVS\cvs.exe" -q = update -d -P CVSROOT=3D:pserver:ano...@op...:/cvsroot/op= ensipstack =20 connect to opensipstack.cvs.sourceforge.net:2401 failed: No connection = could be made because the target machine actively refused it.=20 Erreur : =E9chec de l'op=E9ration CVS =20 Regards, Jeremy. |
From: <jer...@ze...> - 2007-05-30 09:36:48
|
Hi,=20 =20 I've a problem with AccountAddress. In OSSPhone, you build the TO header = with the SIPServerAddress. On my SIP server the INVITE is Forbidden = because the From header, is not the same at REGISTER and INVITE. My SIP = server is distant and not on the same computer. In my application, I've set AccountAddress with the local host address. = But when I do an INVITE, the stack build the TO header with the = AccounAddress instead of the SIPServerAddress. So in your case, I've = REGISTER with a wrong URI, in my case, the TO INVITE header is not good. Can you change this plz or say me where can I fixe this problem. =20 Thanks a lot, Jeremy. =20 ----------------144:08:09.332---------------- *** LISTENER STARTED *** 10.16.213.20:5060 [*** DEFAULT LISTENER ***] ----------------144:08:37.442---------------- REGISTER sip:10.16.212.40:5060 SIP/2.0 From: 9555 <sip:9555@10.16.212.40 -> = 10.16.213.20>;tag=3Da627f1f9cdf81810918589195ccf8571 To: sip:9555@10.16.212.40 -> 10.16.213.20 ... =20 ----------------144:08:37.615---------------- SIP/2.0 100 Trying ... ----------------144:08:37.632---------------- SIP/2.0 200 OK ... ----------------144:09:13.001---------------- SEND: XOR=3D0 644 Bytes to 10.16.212.40:5060:UDP (INVITE = sip:101@10.16.212.40 SIP/2.0) Interface Address=3D10.16.213.20 INVITE sip:101@10.16.212.40 -> 10.16.213.20 SIP/2.0 From: 9555 = <sip:9555@10.16.213.20>;tag=3D845b27facdf81810918789195ccf8571 To: sip:101@10.16.212.40 ... =20 ----------------144:09:13.019---------------- SIP/2.0 100 Trying ... ----------------144:09:13.030---------------- SIP/2.0 403 Forbidden ... =20 |
From: H.Kropf <mai...@gl...> - 2007-05-30 08:59:51
|
I try to use OSS in SIP-client application. One problem: =========================================== SoftPhone.cpp =========================================== void SoftPhoneManager::OnClearedCall(OpalCall & call) { PString remoteName = '"' + call.GetPartyB() + '"'; switch (call.GetCallEndReason()) { case OpalConnection::EndedByRemoteUser : std::cout << remoteName << " has cleared the call"; break; ........ ........ } ........ ........ } =========================================== Why "call.GetPartyB()" return value "551684e4-cdf8-1810-9807-c2555659a538" instead "sip:co...@se..." ? In "OpalManager::SetUpCall(...)" variable "OpalCall::partyB" retrieve value "sip:co...@se..." =========================================== opal / manager.cxx =========================================== BOOL OpalManager::SetUpCall(const PString & partyA, const PString & partyB, PString & token, void * userData) { PTRACE(3, "OpalMan\tSet up call from " << partyA << " to " << partyB); OpalCall * call = CreateCall(); token = call->GetToken(); call->SetPartyB(partyB); ........ ........ } =========================================== But in "OpalCall::OnAlerting".... =========================================== opal / call.cxx =========================================== BOOL OpalCall::OnAlerting(OpalConnection & connection) { PTRACE(3, "Call\tOnAlerting " << connection); BOOL ok = FALSE; if (!LockReadWrite()) return FALSE; partyB = connection.GetRemotePartyName(); ........ ........ } =========================================== After "OnAlerting()", value of "partyB" is "551684e4-cdf8-1810-9807-c2555659a538" Is there any way to getting NORMAL remoteName ? |
From: Ilian J. C. P. <ip...@so...> - 2007-05-29 12:30:40
|
Will prioritize this request. This should be available by tomorrow or on early Thursday tops. Regards, Ilian Joegen E. Baclor wrote: > Hi Ilian, > > Can you provide an ETC for exposing Jitter and Silent Detection params > in ATLSIP? Seems like a popular request. > > Joegen > > > Ilian Jeri C. Pinzon wrote: > >> Hi, >> >> We haven't exposed this yet but we will soon. Please wait for updates >> in this list. >> >> For the meantime, please refer to the attached email on how this can >> be done. >> >> Thanks. >> >> Regards, >> Ilian >> >> Yacine Auczone wrote: >> >>> Hi All, >>> First, Thanks a lot for all the great job you are doing for >>> OpenSipStack and AtlSIP >>> I'm doing some devlopement test with the Softphone ActiveX, the >>> quality is very good and no bugs detected, the only thing is that the >>> softphone is doing by default some VAD and it is not transmiting the >>> silence, so there is no Comfort Noise generation sent whene the >>> calling party stop talking. i heard about a new ActiveX version which >>> will be available and gives the option to enable or disable CNG, is it >>> ready? if yes can i have it please? >>> Other Thing, on my Asterisk Server only G729 Work and not G729A >>> What's Wrong ? >>> >>> >>> >>> >>> ------------------------------------------------------------------------ >>> Avec Windows Live Spaces, publiez directement des messages >>> électroniques sur votre blog ou ajoutez-y des photos, des blagues et >>> d'autres infos. C'est gratuit ! >>> <http://clk.atdmt.com/MSN/go/msnnksac0030000001msn/direct/01/?href=http://www.imagine-msn.com/spaces> >>> >>> ------------------------------------------------------------------------ >>> >>> ------------------------------------------------------------------------- >>> >>> This SF.net email is sponsored by DB2 Express >>> Download DB2 Express C - the FREE version of DB2 express and take >>> control of your XML. No limits. Just data. Click to get it now. >>> http://sourceforge.net/powerbar/db2/ >>> ------------------------------------------------------------------------ >>> >>> _______________________________________________ >>> opensipstack-devel mailing list >>> ope...@li... >>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>> >>> ------------------------------------------------------------------------ >>> >>> No virus found in this incoming message. >>> Checked by AVG Free Edition. Version: 7.5.472 / Virus Database: >>> 269.8.1/822 - Release Date: 5/28/2007 11:40 AM >>> >>> >> ------------------------------------------------------------------------ >> >> Subject: >> [Fwd: Re: [OpenSIPStack] Audio problems - Jitter and Comfort Noise] >> From: >> "Joegen E. Baclor" <joe...@gm...> >> Date: >> Tue, 29 May 2007 18:26:21 +0800 >> To: >> "Ilian Jeri C. Pinzon" <ip...@so...> >> >> To: >> "Ilian Jeri C. Pinzon" <ip...@so...> >> >> >> >> >> ------------------------------------------------------------------------ >> >> Subject: >> Re: [OpenSIPStack] Audio problems - Jitter and Comfort Noise >> From: >> "Joegen E. Baclor" <joe...@gm...> >> Date: >> Thu, 12 Apr 2007 16:40:04 +0800 >> To: >> ope...@li... >> >> To: >> ope...@li... >> >> >> Whit, >> >> Good to hear you nailed it! Can't wait to see your contributions if >> you get the chance to expose the other setters/accessors in ATLSIP. >> >> >> >> Whit Thiele wrote: >> >>> Joegen, >>> >>> Thanks for the help. I thought I'd send the list an update on what >>> solved my >>> problem. I changed the Silence Detector to Fixed with a threshold of >>> 3. This >>> eliminated all the problems! It seems that the adaptive silence >>> detector was >>> constantly incrementing and started affecting things about 10-15 seconds >>> into a conversation! >>> >>> I'll probably put in the ability to change the jitterbuffer and silence >>> detector into the ATLSIP library and send this in to the project in >>> the next >>> couple weeks... >>> >>> >>> Whit >>> >>> >>> >>> -----Original Message----- >>> From: ope...@li... >>> [mailto:ope...@li...] On Behalf Of >>> Joegen E. Baclor >>> Sent: Tuesday, April 10, 2007 9:36 PM >>> To: ope...@li... >>> Subject: Re: [OpenSIPStack] Audio problems - Jitter and Comfort Noise >>> >>> Whit, >>> >>> It is probably best to ask this question to >>> ope...@li.... However, here's how to set >>> the silence detection in code. >>> >>> >>> >>> OpalSilenceDetector::Param param; >>> param.Mode = OpalSilenceDetector::NoSilenceDetection; >>> sfManager.SetSilenceDetectParams( params ); >>> >>> >>> >>> >>> Hope that helps. >>> >>> de...@wh... wrote: >>> >>> >>>> Joegen, >>>> >>>> Thanks for the reply. I've been trying different jitterbuffer >>>> settings as >>>> >>>> >>> well >>> >>> >>>> as changing the number soundChannelBuffers to a number of different >>>> >>>> >>> settings >>> >>> >>>> which I came across in some online >>>> Opal documentation ( >>>> >>>> >>>> >>> http://www.openh323.org/pipermail/openh323/Week-of-Mon-20051219/076004.html >>> >>> ) >>> >>> >>>> I've tried setting the jitter buffer to minimums 25 through to 500 >>>> and the >>>> >>>> >>> depth >>> >>> >>>> to as high as 15 but nothing is helping. As I described before, I >>>> can get >>>> >>>> >>> about >>> >>> >>>> 10-15 consecutive seconds of decent voice quality and then it gets very >>>> >>>> >>> choppy. >>> >>>> Is anyone else experiencing this? >>>> >>>> I am wondering if it may have something to do with the Silence >>>> detection >>>> >>>> >>> portion >>> >>> >>>> of Opal. I've noticed in the opal.log file that the Silence Threshold >>>> >>>> >>> creeps >>> >>> >>>> upwards the longer the person talks. Is there a way to disable the >>>> silence >>>> detector? I could see that there are several Modes (Fixed, Adaptive, >>>> etc) >>>> >>>> >>> for >>> >>> >>>> it but I can't figure out where this is initialized in the code. >>>> I may be on the wrong track but I can't figure out this strange >>>> behavior. >>>> Any help/ideas/suggestions would be greatly appreciated! >>>> >>>> Whit >>>> >>>> >>>> >>>> >>>> >>>> >>>> >>>> -----Original Message----- >>>> From: ope...@li... >>>> [mailto:ope...@li...] On Behalf Of >>>> >>>> >>> Joegen >>> >>> >>>> E. Baclor >>>> Sent: Monday, April 09, 2007 5:19 AM >>>> To: ope...@li... >>>> Subject: Re: [OpenSIPStack] Audio problems - Jitter and Comfort Noise >>>> >>>> de...@wh... wrote: >>>> >>>> >>>>> Members, >>>>> >>>>> I'm doing some testing with the ATLSIP and opensipstack libraries >>>>> and so >>>>> >>>>> >>> far >>> >>> >>>>> with pretty good success. I have written a softphone in C# using the >>>>> >>>>> >>> samples >>> >>> >>>>> provided, however I have a strange issue which I think is related to >>>>> >>>>> >>> jitter >>> >>> >>>>> and/or comfort noise: >>>>> >>>>> Setup: >>>>> C# Softphone ----> Asterisk ---> PRI -----> Telco >>>>> >>>>> Once I make a call, the system works fine except if the person >>>>> using the >>>>> softphone talks for more then about 10-15 seconds (in a row without >>>>> being >>>>> interupted). Then, the audio starts to break up and the person on the >>>>> >>>>> >>> telco >>> >>> >>>>> side can't make out what they are saying. Sometimes this situation is >>>>> >>>>> >>> reversed >>> >>> >>>>> and the person on the softphone can't make out the person on the telco >>>>> >>>>> >>> side. >>> >>>>> By the way, there aren't any problems with the telco or asterisk >>>>> setup as >>>>> >>>>> >>> I >>> >>> >>>>> >>>>> >>>> have >>>> >>>> >>>>> SIP hardphones using the system with no problems. >>>>> >>>>> So my question is: >>>>> >>>>> >>>>> 1. Can I send confort noise during silence breaks? >>>>> >>>>> >>>>> >>>> CNG is a codec functionality and is not manually generated by the >>>> stack. >>>> >>>> >>>> >>>> >>>>> 2. Where can I tweak the jitter-buffer or comfort noise settings? >>>>> Is this >>>>> >>>>> >>> done >>> >>> >>>>> >>>>> >>>> SoftPhoneManager::SetAudioJitterDelay(). It is not yet exposed an the >>>> ActiveX properties. Feel free to send in a patch if you get the chance >>>> to expose it. >>>> >>>> >>>> >>>>> in the code itself? >>>>> 3. Maybe I'm on the wrong track and any suggestions are welcome! >>>>> >>>>> >>>>> Look forward to working more with everyone on this exciting project! >>>>> >>>>> Whit >>>>> >>>>> >>>>> >>>>> >>>>> >>>>> >>>>> >>>>> >>>>> ------------------------------------------------------------------------- >>>>> >>>>> Take Surveys. Earn Cash. Influence the Future of IT >>>>> Join SourceForge.net's Techsay panel and you'll get the chance to >>>>> share >>>>> >>>>> >>> your >>> >>> >>>>> opinions on IT & business topics through brief surveys-and earn cash >>>>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >>>>> >>>>> _______________________________________________ >>>>> opensipstack-devel mailing list >>>>> ope...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>>>> >>>>> >>>>> >>>>> >>>> ------------------------------------------------------------------------- >>>> >>>> Take Surveys. Earn Cash. Influence the Future of IT >>>> Join SourceForge.net's Techsay panel and you'll get the chance to share >>>> >>>> >>> your >>> >>> >>>> opinions on IT & business topics through brief surveys-and earn cash >>>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >>>> >>>> _______________________________________________ >>>> opensipstack-devel mailing list >>>> ope...@li... >>>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>>> >>>> >>>> ------------------------------------------------------------------------- >>>> >>>> Take Surveys. Earn Cash. Influence the Future of IT >>>> Join SourceForge.net's Techsay panel and you'll get the chance to share >>>> >>>> >>> your >>> >>> >>>> opinions on IT & business topics through brief surveys-and earn cash >>>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >>>> >>>> _______________________________________________ >>>> opensipstack-devel mailing list >>>> ope...@li... >>>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>>> >>>> >>>> >>> ------------------------------------------------------------------------- >>> >>> Take Surveys. Earn Cash. Influence the Future of IT >>> Join SourceForge.net's Techsay panel and you'll get the chance to >>> share your >>> opinions on IT & business topics through brief surveys-and earn cash >>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >>> >>> _______________________________________________ >>> opensipstack-devel mailing list >>> ope...@li... >>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>> >>> >>> >>> ------------------------------------------------------------------------- >>> >>> Take Surveys. Earn Cash. Influence the Future of IT >>> Join SourceForge.net's Techsay panel and you'll get the chance to >>> share your >>> opinions on IT & business topics through brief surveys-and earn cash >>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >>> >>> _______________________________________________ >>> opensipstack-devel mailing list >>> ope...@li... >>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>> >>> >>> >>> >> ------------------------------------------------------------------------ >> >> No virus found in this incoming message. >> Checked by AVG Free Edition. >> Version: 7.5.472 / Virus Database: 269.8.1/822 - Release Date: 5/28/2007 11:40 AM >> >> ------------------------------------------------------------------------ >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by DB2 Express >> Download DB2 Express C - the FREE version of DB2 express and take >> control of your XML. No limits. Just data. Click to get it now. >> http://sourceforge.net/powerbar/db2/ >> ------------------------------------------------------------------------ >> >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> >> > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > |
From: Joegen E. B. <jb...@so...> - 2007-05-29 11:53:02
|
Hi Ilian, Can you provide an ETC for exposing Jitter and Silent Detection params in ATLSIP? Seems like a popular request. Joegen Ilian Jeri C. Pinzon wrote: > Hi, > > We haven't exposed this yet but we will soon. Please wait for updates > in this list. > > For the meantime, please refer to the attached email on how this can > be done. > > Thanks. > > Regards, > Ilian > > Yacine Auczone wrote: >> Hi All, >> First, Thanks a lot for all the great job you are doing for >> OpenSipStack and AtlSIP >> I'm doing some devlopement test with the Softphone ActiveX, the >> quality is very good and no bugs detected, the only thing is that the >> softphone is doing by default some VAD and it is not transmiting the >> silence, so there is no Comfort Noise generation sent whene the >> calling party stop talking. i heard about a new ActiveX version which >> will be available and gives the option to enable or disable CNG, is it >> ready? if yes can i have it please? >> Other Thing, on my Asterisk Server only G729 Work and not G729A >> What's Wrong ? >> >> >> >> >> ------------------------------------------------------------------------ >> Avec Windows Live Spaces, publiez directement des messages >> électroniques sur votre blog ou ajoutez-y des photos, des blagues et >> d'autres infos. C'est gratuit ! >> <http://clk.atdmt.com/MSN/go/msnnksac0030000001msn/direct/01/?href=http://www.imagine-msn.com/spaces> >> >> ------------------------------------------------------------------------ >> >> ------------------------------------------------------------------------- >> >> This SF.net email is sponsored by DB2 Express >> Download DB2 Express C - the FREE version of DB2 express and take >> control of your XML. No limits. Just data. Click to get it now. >> http://sourceforge.net/powerbar/db2/ >> ------------------------------------------------------------------------ >> >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> >> ------------------------------------------------------------------------ >> >> No virus found in this incoming message. >> Checked by AVG Free Edition. Version: 7.5.472 / Virus Database: >> 269.8.1/822 - Release Date: 5/28/2007 11:40 AM >> > > > ------------------------------------------------------------------------ > > Subject: > [Fwd: Re: [OpenSIPStack] Audio problems - Jitter and Comfort Noise] > From: > "Joegen E. Baclor" <joe...@gm...> > Date: > Tue, 29 May 2007 18:26:21 +0800 > To: > "Ilian Jeri C. Pinzon" <ip...@so...> > > To: > "Ilian Jeri C. Pinzon" <ip...@so...> > > > > > ------------------------------------------------------------------------ > > Subject: > Re: [OpenSIPStack] Audio problems - Jitter and Comfort Noise > From: > "Joegen E. Baclor" <joe...@gm...> > Date: > Thu, 12 Apr 2007 16:40:04 +0800 > To: > ope...@li... > > To: > ope...@li... > > > Whit, > > Good to hear you nailed it! Can't wait to see your contributions if > you get the chance to expose the other setters/accessors in ATLSIP. > > > > Whit Thiele wrote: >> Joegen, >> >> Thanks for the help. I thought I'd send the list an update on what >> solved my >> problem. I changed the Silence Detector to Fixed with a threshold of >> 3. This >> eliminated all the problems! It seems that the adaptive silence >> detector was >> constantly incrementing and started affecting things about 10-15 seconds >> into a conversation! >> >> I'll probably put in the ability to change the jitterbuffer and silence >> detector into the ATLSIP library and send this in to the project in >> the next >> couple weeks... >> >> >> Whit >> >> >> >> -----Original Message----- >> From: ope...@li... >> [mailto:ope...@li...] On Behalf Of >> Joegen E. Baclor >> Sent: Tuesday, April 10, 2007 9:36 PM >> To: ope...@li... >> Subject: Re: [OpenSIPStack] Audio problems - Jitter and Comfort Noise >> >> Whit, >> >> It is probably best to ask this question to >> ope...@li.... However, here's how to set >> the silence detection in code. >> >> >> >> OpalSilenceDetector::Param param; >> param.Mode = OpalSilenceDetector::NoSilenceDetection; >> sfManager.SetSilenceDetectParams( params ); >> >> >> >> >> Hope that helps. >> >> de...@wh... wrote: >> >>> Joegen, >>> >>> Thanks for the reply. I've been trying different jitterbuffer >>> settings as >>> >> well >> >>> as changing the number soundChannelBuffers to a number of different >>> >> settings >> >>> which I came across in some online >>> Opal documentation ( >>> >>> >> http://www.openh323.org/pipermail/openh323/Week-of-Mon-20051219/076004.html >> >> ) >> >>> I've tried setting the jitter buffer to minimums 25 through to 500 >>> and the >>> >> depth >> >>> to as high as 15 but nothing is helping. As I described before, I >>> can get >>> >> about >> >>> 10-15 consecutive seconds of decent voice quality and then it gets very >>> >> choppy. >>> Is anyone else experiencing this? >>> >>> I am wondering if it may have something to do with the Silence >>> detection >>> >> portion >> >>> of Opal. I've noticed in the opal.log file that the Silence Threshold >>> >> creeps >> >>> upwards the longer the person talks. Is there a way to disable the >>> silence >>> detector? I could see that there are several Modes (Fixed, Adaptive, >>> etc) >>> >> for >> >>> it but I can't figure out where this is initialized in the code. >>> I may be on the wrong track but I can't figure out this strange >>> behavior. >>> Any help/ideas/suggestions would be greatly appreciated! >>> >>> Whit >>> >>> >>> >>> >>> >>> >>> >>> -----Original Message----- >>> From: ope...@li... >>> [mailto:ope...@li...] On Behalf Of >>> >> Joegen >> >>> E. Baclor >>> Sent: Monday, April 09, 2007 5:19 AM >>> To: ope...@li... >>> Subject: Re: [OpenSIPStack] Audio problems - Jitter and Comfort Noise >>> >>> de...@wh... wrote: >>> >>>> Members, >>>> >>>> I'm doing some testing with the ATLSIP and opensipstack libraries >>>> and so >>>> >> far >> >>>> with pretty good success. I have written a softphone in C# using the >>>> >> samples >> >>>> provided, however I have a strange issue which I think is related to >>>> >> jitter >> >>>> and/or comfort noise: >>>> >>>> Setup: >>>> C# Softphone ----> Asterisk ---> PRI -----> Telco >>>> >>>> Once I make a call, the system works fine except if the person >>>> using the >>>> softphone talks for more then about 10-15 seconds (in a row without >>>> being >>>> interupted). Then, the audio starts to break up and the person on the >>>> >> telco >> >>>> side can't make out what they are saying. Sometimes this situation is >>>> >> reversed >> >>>> and the person on the softphone can't make out the person on the telco >>>> >> side. >>>> By the way, there aren't any problems with the telco or asterisk >>>> setup as >>>> >> I >> >>>> >>> have >>> >>>> SIP hardphones using the system with no problems. >>>> >>>> So my question is: >>>> >>>> >>>> 1. Can I send confort noise during silence breaks? >>>> >>>> >>> CNG is a codec functionality and is not manually generated by the >>> stack. >>> >>> >>> >>>> 2. Where can I tweak the jitter-buffer or comfort noise settings? >>>> Is this >>>> >> done >> >>>> >>> SoftPhoneManager::SetAudioJitterDelay(). It is not yet exposed an the >>> ActiveX properties. Feel free to send in a patch if you get the chance >>> to expose it. >>> >>> >>>> in the code itself? >>>> 3. Maybe I'm on the wrong track and any suggestions are welcome! >>>> >>>> >>>> Look forward to working more with everyone on this exciting project! >>>> >>>> Whit >>>> >>>> >>>> >>>> >>>> >>>> >>>> >>>> >>>> ------------------------------------------------------------------------- >>>> >>>> Take Surveys. Earn Cash. Influence the Future of IT >>>> Join SourceForge.net's Techsay panel and you'll get the chance to >>>> share >>>> >> your >> >>>> opinions on IT & business topics through brief surveys-and earn cash >>>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >>>> >>>> _______________________________________________ >>>> opensipstack-devel mailing list >>>> ope...@li... >>>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>>> >>>> >>>> >>> ------------------------------------------------------------------------- >>> >>> Take Surveys. Earn Cash. Influence the Future of IT >>> Join SourceForge.net's Techsay panel and you'll get the chance to share >>> >> your >> >>> opinions on IT & business topics through brief surveys-and earn cash >>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >>> >>> _______________________________________________ >>> opensipstack-devel mailing list >>> ope...@li... >>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>> >>> >>> ------------------------------------------------------------------------- >>> >>> Take Surveys. Earn Cash. Influence the Future of IT >>> Join SourceForge.net's Techsay panel and you'll get the chance to share >>> >> your >> >>> opinions on IT & business topics through brief surveys-and earn cash >>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >>> >>> _______________________________________________ >>> opensipstack-devel mailing list >>> ope...@li... >>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>> >>> >> >> >> ------------------------------------------------------------------------- >> >> Take Surveys. Earn Cash. Influence the Future of IT >> Join SourceForge.net's Techsay panel and you'll get the chance to >> share your >> opinions on IT & business topics through brief surveys-and earn cash >> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >> >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> >> >> >> ------------------------------------------------------------------------- >> >> Take Surveys. Earn Cash. Influence the Future of IT >> Join SourceForge.net's Techsay panel and you'll get the chance to >> share your >> opinions on IT & business topics through brief surveys-and earn cash >> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV >> >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> >> >> > > > ------------------------------------------------------------------------ > > No virus found in this incoming message. > Checked by AVG Free Edition. > Version: 7.5.472 / Virus Database: 269.8.1/822 - Release Date: 5/28/2007 11:40 AM > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > ------------------------------------------------------------------------ > > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > |
From: Ilian J. C. P. <ip...@so...> - 2007-05-29 10:49:31
|
Hi, We haven't exposed this yet but we will soon. Please wait for updates in this list. For the meantime, please refer to the attached email on how this can be done. Thanks. Regards, Ilian Yacine Auczone wrote: > Hi All, > First, Thanks a lot for all the great job you are doing for > OpenSipStack and AtlSIP > I'm doing some devlopement test with the Softphone ActiveX, the > quality is very good and no bugs detected, the only thing is that the > softphone is doing by default some VAD and it is not transmiting the > silence, so there is no Comfort Noise generation sent whene the > calling party stop talking. i heard about a new ActiveX version which > will be available and gives the option to enable or disable CNG, is it > ready? if yes can i have it please? > Other Thing, on my Asterisk Server only G729 Work and not G729A > What's Wrong ? > > > > > ------------------------------------------------------------------------ > Avec Windows Live Spaces, publiez directement des messages > électroniques sur votre blog ou ajoutez-y des photos, des blagues et > d'autres infos. C'est gratuit ! > <http://clk.atdmt.com/MSN/go/msnnksac0030000001msn/direct/01/?href=http://www.imagine-msn.com/spaces> > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > ------------------------------------------------------------------------ > > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > ------------------------------------------------------------------------ > > No virus found in this incoming message. > Checked by AVG Free Edition. > Version: 7.5.472 / Virus Database: 269.8.1/822 - Release Date: 5/28/2007 11:40 AM > |
From: Yacine A. <yac...@ms...> - 2007-05-29 09:29:45
|
Hi All,First, Thanks a lot for all the great job you are doing for OpenSipS= tack and AtlSIPI'm doing some devlopement test with the Softphone ActiveX, = the quality is very good and no bugs detected, the only thing is that the s= oftphone is doing by default some VAD and it is not transmiting the silence= , so there is no Comfort Noise generation sent whene the calling party sto= p talking. i heard about a new ActiveX version which will be available and = gives the option to enable or disable CNG, is it ready? if yes can i have i= t please?Other Thing, on my Asterisk Server only G729 Work and not G729AWha= t's Wrong ? _________________________________________________________________ Essayez Live.com et cr=E9ez l'Internet qui vous ressemble : infos, sports, = m=E9t=E9o et bien plus encore ! http://www.live.com/getstarted= |
From: Joegen E. B. <jb...@so...> - 2007-05-29 03:45:50
|
I have no idea what MWI is, but I'm subscribing for the event called presence.<br />Can you help me? It's really important.<br /><br />When I change for full mode to proxy mode I get 404 not found instead.<br />Perhaps you could try and give me an example config file which works and uses only ip addresses and no domain names.<br /><br />----------------------<br /><br />OpenSBC does not directly support presence. You need to have your own presence capable server like JAIN and put corresponding NICT routes so that subscription are routed to the presence server. You may also need to route the registrations to the presence server via upper reg. |
From: Joegen E. B. <jb...@so...> - 2007-05-27 02:55:34
|
Andre, Upgrade your OpenSBC using CVS head. Your version is pretty stale. See the following post: *[OpenSIPStack] No Audio Problem with XTEN behind NAT Solved <http://sourceforge.net/mailarchive/message.php?msg_name=463890DA.9040508%40solegysystems.com>* http://sourceforge.net/mailarchive/forum.php?thread_name=463890DA.9040508%40solegysystems.com&forum_name=opensipstack-devel Joegen Andre Silo wrote: > Here is the b2bua log > > */"Joegen E. Baclor" <jb...@so...>/* wrote: > > Please send the b2bua log for this call as well > > Andre Silo wrote: > > I get one way voice call. I hear the called party but they > cannot hear > > me. Attached is the RTP dump of this. > > > > */"Joegen E. Baclor" /* wrote: > > > > Yes, bridging is a capability of OpenSBC. Make sure you run it with > > media proxy turned on. > > > > Andre Silo wrote: > > > Does OSBC do IP traversal? > > > Meaning the Softphone connects via private ip of OSBC and OSBC > > > connects to CISCO via public. > > > > > > SP -> private ip (OSBC) public ip -> CISCO > > > > > > > > > ------------------------------------------------------------------------ > > > No need to miss a message. Get email on-the-go > > > > > > with Yahoo! Mail for Mobile. Get started. > > > > > > > > > ------------------------------------------------------------------------ > > > > > > > > > ------------------------------------------------------------------------- > > > This SF.net email is sponsored by DB2 Express > > > Download DB2 Express C - the FREE version of DB2 express and take > > > control of your XML. No limits. Just data. Click to get it now. > > > http://sourceforge.net/powerbar/db2/ > > > > > > ------------------------------------------------------------------------ > > > > > > _______________________________________________ > > > opensipstack-devel mailing list > > > ope...@li... > > > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > > > > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by DB2 Express > > Download DB2 Express C - the FREE version of DB2 express and take > > control of your XML. No limits. Just data. Click to get it now. > > http://sourceforge.net/powerbar/db2/ > > _______________________________________________ > > opensipstack-devel mailing list > > ope...@li... > > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > > > > > ------------------------------------------------------------------------ > > Pinpoint customers > > who > > are looking for what you sell. > > > ------------------------------------------------------------------------ > Got a little couch potato? > Check out fun summer activities for kids. > <http://us.rd.yahoo.com/evt=48248/*http://search.yahoo.com/search?fr=oni_on_mail&p=summer+activities+for+kids&cs=bz> |
From: Joegen E. B. <jb...@so...> - 2007-05-26 05:38:16
|
Please send the b2bua log for this call as well Andre Silo wrote: > I get one way voice call. I hear the called party but they cannot hear > me. Attached is the RTP dump of this. > > */"Joegen E. Baclor" <jb...@so...>/* wrote: > > Yes, bridging is a capability of OpenSBC. Make sure you run it with > media proxy turned on. > > Andre Silo wrote: > > Does OSBC do IP traversal? > > Meaning the Softphone connects via private ip of OSBC and OSBC > > connects to CISCO via public. > > > > SP -> private ip (OSBC) public ip -> CISCO > > > > > ------------------------------------------------------------------------ > > No need to miss a message. Get email on-the-go > > > > with Yahoo! Mail for Mobile. Get started. > > > > > ------------------------------------------------------------------------ > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by DB2 Express > > Download DB2 Express C - the FREE version of DB2 express and take > > control of your XML. No limits. Just data. Click to get it now. > > http://sourceforge.net/powerbar/db2/ > > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > opensipstack-devel mailing list > > ope...@li... > > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > ------------------------------------------------------------------------ > Pinpoint customers > <http://us.rd.yahoo.com/evt=48250/*http://searchmarketing.yahoo.com/arp/sponsoredsearch_v9.php?o=US2226&cmp=Yahoo&ctv=AprNI&s=Y&s2=EM&b=50>who > are looking for what you sell. |
From: Joegen E. B. <jb...@so...> - 2007-05-26 03:51:27
|
Yes, bridging is a capability of OpenSBC. Make sure you run it with media proxy turned on. Andre Silo wrote: > Does OSBC do IP traversal? > Meaning the Softphone connects via private ip of OSBC and OSBC > connects to CISCO via public. > > SP -> private ip (OSBC) public ip -> CISCO > > ------------------------------------------------------------------------ > No need to miss a message. Get email on-the-go > <http://us.rd.yahoo.com/evt=43910/*http://mobile.yahoo.com/mail> > with Yahoo! Mail for Mobile. Get started. > <http://us.rd.yahoo.com/evt=43910/*http://mobile.yahoo.com/mail> > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > ------------------------------------------------------------------------ > > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > |
From: Andre S. <eds...@ya...> - 2007-05-26 02:17:40
|
Does OSBC do IP traversal? Meaning the Softphone connects via private ip of OSBC and OSBC connects to CISCO via public. SP -> private ip (OSBC) public ip -> CISCO --------------------------------- No need to miss a message. Get email on-the-go with Yahoo! Mail for Mobile. Get started. |
From: Claudio M. <cmi...@gm...> - 2007-05-24 15:52:18
|
Friends, I have a problem : I have created a child class of RTP_Session that uses a constructor that is equal to yhe constructor of RTP_Session. But when I compile my code I get the following mistake: RTP_Session: no appropriate default constructor available. Do you have any idea what I am doing wrong. Sorry but I am not a skilled programmer. Thanks in advance. Claudio Miceli de Farias |
From: Andre S. <eds...@ya...> - 2007-05-24 04:08:17
|
Joegen, Thanks. It's working now, found the port that is blocking. "Joegen E. Baclor" <jb...@so...> wrote: Check your firewall port restrictions. It smells like port blockage allover. Andre Silo wrote: > Ilian, > It's ok now I just cleaned and recompiled everything. > Did you see the console logs for ATLSIP -> OSBC -> Cisco problem I > encounter? I think this is the problem that I have no voice heard. > 2007/05/24 12:36:04.109 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.140 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.171 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.187 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.218 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.250 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.281 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.296 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.328 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.359 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.390 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.421 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.437 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.468 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.500 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.515 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.546 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.578 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote n > > */"Ilian Jeri C. Pinzon" /* wrote: > > Did you redownload ATLSIP? If so, you may overwritten your .vcproj > file. > Modify your project properties again to point the correct lib, > include, > etc. directories. > > > Andre Silo wrote: > > Yes.. its there. > > > > */"Ilian Jeri C. Pinzon" /* wrote: > > > > Please check if your OpenSIPStack code is complete. Verify that > > SoftPhoneInterface.h is present in opensipstack\include. > > > > Andre Silo wrote: > > > I get an error. > > > d:\SpftPhone\atlsip5.0\OpenSIPStackCtl.h(87) : fatal error C1083: > > > Cannot open include file: 'SoftPhoneInterface.h': No such file or > > > directory > > > > > > > > > */"Ilian Jeri C. Pinzon" /* wrote: > > > > > > Hi, > > > > > > I've checked in modifications to make the SF more lenient in > > checking > > > for unregistration events. This should fire Event_LogoutSuccessful > > > even > > > with a broken 200 OK. > > > > > > Regards, > > > Ilian > > > > > > Joegen E. Baclor wrote: > > > > Andre/Jeremy > > > > > > > > Come on guys, you give up so easily! If you are using OpenSBC, > > > the 200 > > > > OK sent to the Unregister does not contain a contact and an > > > expires. > > > > This bug caused OSSPhone to not distinguish the response > > > properly as a > > > > response to Unregister. So thanks to you, a new bug has been > > > patched. I > > > > have also brought this thing up with Ilian. His next wave of > > > updates > > > > should have made the Softphone immune to this situation. > > > > > > > > Joegen > > > > > > > > Andre Silo wrote: > > > > > > > >> Jeremy, > > > >> We just close the whole application when we logout. Re-login > > > does not work > > > >> > > > >> */Counet Jérémy /* wrote: > > > >> > > > >> Hi, > > > >> When I logout from the server with OSSPhone, is it > impossible to > > > >> re-login to the server after Can you explain me why? > > > >> Regards, > > > >> Jeremy Counet. > > > >> > > > > > > ------------------------------------------------------------------------- > > > >> This SF.net email is sponsored by DB2 Express > > > >> Download DB2 Express C - the FREE version of DB2 express > and take > > > >> control of your XML. No limits. Just data. Click to get it now. > > > >> > > > > > > http://sourceforge.net/powerbar/db2/_______________________________________________ > > > >> opensipstack-devel mailing list > > > >> ope...@li... > > > >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > >> > > > >> > > > >> > > > > > > ------------------------------------------------------------------------ > > > >> Be a better Heartthrob. Get better relationship answers > > > >> from > > > >> someone who knows. > > > >> Yahoo! Answers - Check it out. > > > >> > > > > > > ------------------------------------------------------------------------ > > > >> > > > >> > > > > > > ------------------------------------------------------------------------- > > > >> This SF.net email is sponsored by DB2 Express > > > >> Download DB2 Express C - the FREE version of DB2 express > and take > > > >> control of your XML. No limits. Just data. Click to get it now. > > > >> http://sourceforge.net/powerbar/db2/ > > > >> > > > > > > ------------------------------------------------------------------------ > > > >> > > > >> _______________________________________________ > > > >> opensipstack-devel mailing list > > > >> ope...@li... > > > >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > >> > > > >> > > > > > > > > > > > > > > > > > > ------------------------------------------------------------------------- > > > > This SF.net email is sponsored by DB2 Express > > > > Download DB2 Express C - the FREE version of DB2 express and > take > > > > control of your XML. No limits. Just data. Click to get it now. > > > > http://sourceforge.net/powerbar/db2/ > > > > _______________________________________________ > > > > opensipstack-devel mailing list > > > > ope...@li... > > > > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > > > > > > > > > > > > > > > > > > ------------------------------------------------------------------------- > > > This SF.net email is sponsored by DB2 Express > > > Download DB2 Express C - the FREE version of DB2 express and take > > > control of your XML. No limits. Just data. Click to get it now. > > > http://sourceforge.net/powerbar/db2/ > > > _______________________________________________ > > > opensipstack-devel mailing list > > > ope...@li... > > > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > > > > > > > > > > ------------------------------------------------------------------------ > > > Finding fabulous fares is fun. > > > Let Yahoo! FareChase search your favorite travel sites > > > > > > to find flight and hotel bargains. > > > > > > ------------------------------------------------------------------------ > > > > > > > > > ------------------------------------------------------------------------- > > > This SF.net email is sponsored by DB2 Express > > > Download DB2 Express C - the FREE version of DB2 express and take > > > control of your XML. No limits. Just data. Click to get it now. > > > http://sourceforge.net/powerbar/db2/ > > > > > > ------------------------------------------------------------------------ > > > > > > _______________________________________________ > > > opensipstack-devel mailing list > > > ope...@li... > > > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > > > > > > > ------------------------------------------------------------------------ > > > > > > No virus found in this incoming message. > > > Checked by AVG Free Edition. > > > Version: 7.5.467 / Virus Database: 269.7.6/815 - Release Date: > > 5/22/2007 3:49 PM > > > > > > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by DB2 Express > > Download DB2 Express C - the FREE version of DB2 express and take > > control of your XML. No limits. Just data. Click to get it now. > > http://sourceforge.net/powerbar/db2/ > > _______________________________________________ > > opensipstack-devel mailing list > > ope...@li... > > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > > > > > ------------------------------------------------------------------------ > > Luggage? GPS? Comic books? > > Check out fitting gifts for grads > > > > at Yahoo! Search. > > > ------------------------------------------------------------------------ > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by DB2 Express > > Download DB2 Express C - the FREE version of DB2 express and take > > control of your XML. No limits. Just data. Click to get it now. > > http://sourceforge.net/powerbar/db2/ > > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > opensipstack-devel mailing list > > ope...@li... > > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > > > ------------------------------------------------------------------------ > > > > No virus found in this incoming message. > > Checked by AVG Free Edition. > > Version: 7.5.467 / Virus Database: 269.7.6/815 - Release Date: > 5/22/2007 3:49 PM > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > ------------------------------------------------------------------------ > Get the free Yahoo! toolbar > > and rest assured with the added security of spyware protection. > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > ------------------------------------------------------------------------ > > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ opensipstack-devel mailing list ope...@li... https://lists.sourceforge.net/lists/listinfo/opensipstack-devel --------------------------------- Be a better Heartthrob. Get better relationship answers from someone who knows. Yahoo! Answers - Check it out. |
From: Joegen E. B. <jb...@so...> - 2007-05-24 03:54:06
|
Check your firewall port restrictions. It smells like port blockage allover. Andre Silo wrote: > Ilian, > It's ok now I just cleaned and recompiled everything. > Did you see the console logs for ATLSIP -> OSBC -> Cisco problem I > encounter? I think this is the problem that I have no voice heard. > 2007/05/24 12:36:04.109 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.140 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.171 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.187 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.218 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.250 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.281 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.296 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.328 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.359 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.390 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.421 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.437 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.468 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.500 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.515 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.546 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote not ready. > 2007/05/24 12:36:04.578 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session > 1, Data port on remote n > > */"Ilian Jeri C. Pinzon" <ip...@so...>/* wrote: > > Did you redownload ATLSIP? If so, you may overwritten your .vcproj > file. > Modify your project properties again to point the correct lib, > include, > etc. directories. > > > Andre Silo wrote: > > Yes.. its there. > > > > */"Ilian Jeri C. Pinzon" /* wrote: > > > > Please check if your OpenSIPStack code is complete. Verify that > > SoftPhoneInterface.h is present in opensipstack\include. > > > > Andre Silo wrote: > > > I get an error. > > > d:\SpftPhone\atlsip5.0\OpenSIPStackCtl.h(87) : fatal error C1083: > > > Cannot open include file: 'SoftPhoneInterface.h': No such file or > > > directory > > > > > > > > > */"Ilian Jeri C. Pinzon" /* wrote: > > > > > > Hi, > > > > > > I've checked in modifications to make the SF more lenient in > > checking > > > for unregistration events. This should fire Event_LogoutSuccessful > > > even > > > with a broken 200 OK. > > > > > > Regards, > > > Ilian > > > > > > Joegen E. Baclor wrote: > > > > Andre/Jeremy > > > > > > > > Come on guys, you give up so easily! If you are using OpenSBC, > > > the 200 > > > > OK sent to the Unregister does not contain a contact and an > > > expires. > > > > This bug caused OSSPhone to not distinguish the response > > > properly as a > > > > response to Unregister. So thanks to you, a new bug has been > > > patched. I > > > > have also brought this thing up with Ilian. His next wave of > > > updates > > > > should have made the Softphone immune to this situation. > > > > > > > > Joegen > > > > > > > > Andre Silo wrote: > > > > > > > >> Jeremy, > > > >> We just close the whole application when we logout. Re-login > > > does not work > > > >> > > > >> */Counet Jérémy /* wrote: > > > >> > > > >> Hi, > > > >> When I logout from the server with OSSPhone, is it > impossible to > > > >> re-login to the server after… Can you explain me why? > > > >> Regards, > > > >> Jeremy Counet. > > > >> > > > > > > ------------------------------------------------------------------------- > > > >> This SF.net email is sponsored by DB2 Express > > > >> Download DB2 Express C - the FREE version of DB2 express > and take > > > >> control of your XML. No limits. Just data. Click to get it now. > > > >> > > > > > > http://sourceforge.net/powerbar/db2/_______________________________________________ > > > >> opensipstack-devel mailing list > > > >> ope...@li... > > > >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > >> > > > >> > > > >> > > > > > > ------------------------------------------------------------------------ > > > >> Be a better Heartthrob. Get better relationship answers > > > >> from > > > >> someone who knows. > > > >> Yahoo! Answers - Check it out. > > > >> > > > > > > ------------------------------------------------------------------------ > > > >> > > > >> > > > > > > ------------------------------------------------------------------------- > > > >> This SF.net email is sponsored by DB2 Express > > > >> Download DB2 Express C - the FREE version of DB2 express > and take > > > >> control of your XML. No limits. Just data. Click to get it now. > > > >> http://sourceforge.net/powerbar/db2/ > > > >> > > > > > > ------------------------------------------------------------------------ > > > >> > > > >> _______________________________________________ > > > >> opensipstack-devel mailing list > > > >> ope...@li... > > > >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > >> > > > >> > > > > > > > > > > > > > > > > > > ------------------------------------------------------------------------- > > > > This SF.net email is sponsored by DB2 Express > > > > Download DB2 Express C - the FREE version of DB2 express and > take > > > > control of your XML. No limits. Just data. Click to get it now. > > > > http://sourceforge.net/powerbar/db2/ > > > > _______________________________________________ > > > > opensipstack-devel mailing list > > > > ope...@li... > > > > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > > > > > > > > > > > > > > > > > > ------------------------------------------------------------------------- > > > This SF.net email is sponsored by DB2 Express > > > Download DB2 Express C - the FREE version of DB2 express and take > > > control of your XML. No limits. Just data. Click to get it now. > > > http://sourceforge.net/powerbar/db2/ > > > _______________________________________________ > > > opensipstack-devel mailing list > > > ope...@li... > > > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > > > > > > > > > > ------------------------------------------------------------------------ > > > Finding fabulous fares is fun. > > > Let Yahoo! FareChase search your favorite travel sites > > > > > > to find flight and hotel bargains. > > > > > > ------------------------------------------------------------------------ > > > > > > > > > ------------------------------------------------------------------------- > > > This SF.net email is sponsored by DB2 Express > > > Download DB2 Express C - the FREE version of DB2 express and take > > > control of your XML. No limits. Just data. Click to get it now. > > > http://sourceforge.net/powerbar/db2/ > > > > > > ------------------------------------------------------------------------ > > > > > > _______________________________________________ > > > opensipstack-devel mailing list > > > ope...@li... > > > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > > > > > > > ------------------------------------------------------------------------ > > > > > > No virus found in this incoming message. > > > Checked by AVG Free Edition. > > > Version: 7.5.467 / Virus Database: 269.7.6/815 - Release Date: > > 5/22/2007 3:49 PM > > > > > > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by DB2 Express > > Download DB2 Express C - the FREE version of DB2 express and take > > control of your XML. No limits. Just data. Click to get it now. > > http://sourceforge.net/powerbar/db2/ > > _______________________________________________ > > opensipstack-devel mailing list > > ope...@li... > > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > > > > > ------------------------------------------------------------------------ > > Luggage? GPS? Comic books? > > Check out fitting gifts for grads > > > > at Yahoo! Search. > > > ------------------------------------------------------------------------ > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by DB2 Express > > Download DB2 Express C - the FREE version of DB2 express and take > > control of your XML. No limits. Just data. Click to get it now. > > http://sourceforge.net/powerbar/db2/ > > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > opensipstack-devel mailing list > > ope...@li... > > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > > > ------------------------------------------------------------------------ > > > > No virus found in this incoming message. > > Checked by AVG Free Edition. > > Version: 7.5.467 / Virus Database: 269.7.6/815 - Release Date: > 5/22/2007 3:49 PM > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > ------------------------------------------------------------------------ > Get the free Yahoo! toolbar > <http://us.rd.yahoo.com/evt=48226/*http://new.toolbar.yahoo.com/toolbar/features/norton/index.php> > and rest assured with the added security of spyware protection. > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > ------------------------------------------------------------------------ > > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > |
From: Andre S. <eds...@ya...> - 2007-05-23 07:31:19
|
Ilian, It's ok now I just cleaned and recompiled everything. Did you see the console logs for ATLSIP -> OSBC -> Cisco problem I encounter? I think this is the problem that I have no voice heard. 2007/05/24 12:36:04.109 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session 1, Data port on remote not ready. 2007/05/24 12:36:04.140 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session 1, Data port on remote not ready. 2007/05/24 12:36:04.171 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session 1, Data port on remote not ready. 2007/05/24 12:36:04.187 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session 1, Data port on remote not ready. 2007/05/24 12:36:04.218 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session 1, Data port on remote not ready. 2007/05/24 12:36:04.250 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session 1, Data port on remote not ready. 2007/05/24 12:36:04.281 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session 1, Data port on remote not ready. 2007/05/24 12:36:04.296 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session 1, Data port on remote not ready. 2007/05/24 12:36:04.328 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session 1, Data port on remote not ready. 2007/05/24 12:36:04.359 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session 1, Data port on remote not ready. 2007/05/24 12:36:04.390 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session 1, Data port on remote not ready. 2007/05/24 12:36:04.421 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session 1, Data port on remote not ready. 2007/05/24 12:36:04.437 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session 1, Data port on remote not ready. 2007/05/24 12:36:04.468 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session 1, Data port on remote not ready. 2007/05/24 12:36:04.500 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session 1, Data port on remote not ready. 2007/05/24 12:36:04.515 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session 1, Data port on remote not ready. 2007/05/24 12:36:04.546 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session 1, Data port on remote not ready. 2007/05/24 12:36:04.578 OpalMediaThread:b4f6d0 Debug1 RTP_UDP Session 1, Data port on remote n "Ilian Jeri C. Pinzon" <ip...@so...> wrote: Did you redownload ATLSIP? If so, you may overwritten your .vcproj file. Modify your project properties again to point the correct lib, include, etc. directories. Andre Silo wrote: > Yes.. its there. > > */"Ilian Jeri C. Pinzon" /* wrote: > > Please check if your OpenSIPStack code is complete. Verify that > SoftPhoneInterface.h is present in opensipstack\include. > > Andre Silo wrote: > > I get an error. > > d:\SpftPhone\atlsip5.0\OpenSIPStackCtl.h(87) : fatal error C1083: > > Cannot open include file: 'SoftPhoneInterface.h': No such file or > > directory > > > > > > */"Ilian Jeri C. Pinzon" /* wrote: > > > > Hi, > > > > I've checked in modifications to make the SF more lenient in > checking > > for unregistration events. This should fire Event_LogoutSuccessful > > even > > with a broken 200 OK. > > > > Regards, > > Ilian > > > > Joegen E. Baclor wrote: > > > Andre/Jeremy > > > > > > Come on guys, you give up so easily! If you are using OpenSBC, > > the 200 > > > OK sent to the Unregister does not contain a contact and an > > expires. > > > This bug caused OSSPhone to not distinguish the response > > properly as a > > > response to Unregister. So thanks to you, a new bug has been > > patched. I > > > have also brought this thing up with Ilian. His next wave of > > updates > > > should have made the Softphone immune to this situation. > > > > > > Joegen > > > > > > Andre Silo wrote: > > > > > >> Jeremy, > > >> We just close the whole application when we logout. Re-login > > does not work > > >> > > >> */Counet Jérémy /* wrote: > > >> > > >> Hi, > > >> When I logout from the server with OSSPhone, is it impossible to > > >> re-login to the server after Can you explain me why? > > >> Regards, > > >> Jeremy Counet. > > >> > > > ------------------------------------------------------------------------- > > >> This SF.net email is sponsored by DB2 Express > > >> Download DB2 Express C - the FREE version of DB2 express and take > > >> control of your XML. No limits. Just data. Click to get it now. > > >> > > > http://sourceforge.net/powerbar/db2/_______________________________________________ > > >> opensipstack-devel mailing list > > >> ope...@li... > > >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > >> > > >> > > >> > > > ------------------------------------------------------------------------ > > >> Be a better Heartthrob. Get better relationship answers > > >> from > > >> someone who knows. > > >> Yahoo! Answers - Check it out. > > >> > > > ------------------------------------------------------------------------ > > >> > > >> > > > ------------------------------------------------------------------------- > > >> This SF.net email is sponsored by DB2 Express > > >> Download DB2 Express C - the FREE version of DB2 express and take > > >> control of your XML. No limits. Just data. Click to get it now. > > >> http://sourceforge.net/powerbar/db2/ > > >> > > > ------------------------------------------------------------------------ > > >> > > >> _______________________________________________ > > >> opensipstack-devel mailing list > > >> ope...@li... > > >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > >> > > >> > > > > > > > > > > > > ------------------------------------------------------------------------- > > > This SF.net email is sponsored by DB2 Express > > > Download DB2 Express C - the FREE version of DB2 express and take > > > control of your XML. No limits. Just data. Click to get it now. > > > http://sourceforge.net/powerbar/db2/ > > > _______________________________________________ > > > opensipstack-devel mailing list > > > ope...@li... > > > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > > > > > > > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by DB2 Express > > Download DB2 Express C - the FREE version of DB2 express and take > > control of your XML. No limits. Just data. Click to get it now. > > http://sourceforge.net/powerbar/db2/ > > _______________________________________________ > > opensipstack-devel mailing list > > ope...@li... > > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > > > > > ------------------------------------------------------------------------ > > Finding fabulous fares is fun. > > Let Yahoo! FareChase search your favorite travel sites > > > > to find flight and hotel bargains. > > > ------------------------------------------------------------------------ > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by DB2 Express > > Download DB2 Express C - the FREE version of DB2 express and take > > control of your XML. No limits. Just data. Click to get it now. > > http://sourceforge.net/powerbar/db2/ > > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > opensipstack-devel mailing list > > ope...@li... > > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > > > ------------------------------------------------------------------------ > > > > No virus found in this incoming message. > > Checked by AVG Free Edition. > > Version: 7.5.467 / Virus Database: 269.7.6/815 - Release Date: > 5/22/2007 3:49 PM > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > ------------------------------------------------------------------------ > Luggage? GPS? Comic books? > Check out fitting gifts for grads > > at Yahoo! Search. > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > ------------------------------------------------------------------------ > > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > ------------------------------------------------------------------------ > > No virus found in this incoming message. > Checked by AVG Free Edition. > Version: 7.5.467 / Virus Database: 269.7.6/815 - Release Date: 5/22/2007 3:49 PM > ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ opensipstack-devel mailing list ope...@li... https://lists.sourceforge.net/lists/listinfo/opensipstack-devel --------------------------------- Get the free Yahoo! toolbar and rest assured with the added security of spyware protection. |
From: Ilian J. C. P. <ip...@so...> - 2007-05-23 06:48:38
|
Did you redownload ATLSIP? If so, you may overwritten your .vcproj file. Modify your project properties again to point the correct lib, include, etc. directories. Andre Silo wrote: > Yes.. its there. > > */"Ilian Jeri C. Pinzon" <ip...@so...>/* wrote: > > Please check if your OpenSIPStack code is complete. Verify that > SoftPhoneInterface.h is present in opensipstack\include. > > Andre Silo wrote: > > I get an error. > > d:\SpftPhone\atlsip5.0\OpenSIPStackCtl.h(87) : fatal error C1083: > > Cannot open include file: 'SoftPhoneInterface.h': No such file or > > directory > > > > > > */"Ilian Jeri C. Pinzon" /* wrote: > > > > Hi, > > > > I've checked in modifications to make the SF more lenient in > checking > > for unregistration events. This should fire Event_LogoutSuccessful > > even > > with a broken 200 OK. > > > > Regards, > > Ilian > > > > Joegen E. Baclor wrote: > > > Andre/Jeremy > > > > > > Come on guys, you give up so easily! If you are using OpenSBC, > > the 200 > > > OK sent to the Unregister does not contain a contact and an > > expires. > > > This bug caused OSSPhone to not distinguish the response > > properly as a > > > response to Unregister. So thanks to you, a new bug has been > > patched. I > > > have also brought this thing up with Ilian. His next wave of > > updates > > > should have made the Softphone immune to this situation. > > > > > > Joegen > > > > > > Andre Silo wrote: > > > > > >> Jeremy, > > >> We just close the whole application when we logout. Re-login > > does not work > > >> > > >> */Counet Jérémy /* wrote: > > >> > > >> Hi, > > >> When I logout from the server with OSSPhone, is it impossible to > > >> re-login to the server after… Can you explain me why? > > >> Regards, > > >> Jeremy Counet. > > >> > > > ------------------------------------------------------------------------- > > >> This SF.net email is sponsored by DB2 Express > > >> Download DB2 Express C - the FREE version of DB2 express and take > > >> control of your XML. No limits. Just data. Click to get it now. > > >> > > > http://sourceforge.net/powerbar/db2/_______________________________________________ > > >> opensipstack-devel mailing list > > >> ope...@li... > > >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > >> > > >> > > >> > > > ------------------------------------------------------------------------ > > >> Be a better Heartthrob. Get better relationship answers > > >> from > > >> someone who knows. > > >> Yahoo! Answers - Check it out. > > >> > > > ------------------------------------------------------------------------ > > >> > > >> > > > ------------------------------------------------------------------------- > > >> This SF.net email is sponsored by DB2 Express > > >> Download DB2 Express C - the FREE version of DB2 express and take > > >> control of your XML. No limits. Just data. Click to get it now. > > >> http://sourceforge.net/powerbar/db2/ > > >> > > > ------------------------------------------------------------------------ > > >> > > >> _______________________________________________ > > >> opensipstack-devel mailing list > > >> ope...@li... > > >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > >> > > >> > > > > > > > > > > > > ------------------------------------------------------------------------- > > > This SF.net email is sponsored by DB2 Express > > > Download DB2 Express C - the FREE version of DB2 express and take > > > control of your XML. No limits. Just data. Click to get it now. > > > http://sourceforge.net/powerbar/db2/ > > > _______________________________________________ > > > opensipstack-devel mailing list > > > ope...@li... > > > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > > > > > > > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by DB2 Express > > Download DB2 Express C - the FREE version of DB2 express and take > > control of your XML. No limits. Just data. Click to get it now. > > http://sourceforge.net/powerbar/db2/ > > _______________________________________________ > > opensipstack-devel mailing list > > ope...@li... > > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > > > > > ------------------------------------------------------------------------ > > Finding fabulous fares is fun. > > Let Yahoo! FareChase search your favorite travel sites > > > > to find flight and hotel bargains. > > > ------------------------------------------------------------------------ > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by DB2 Express > > Download DB2 Express C - the FREE version of DB2 express and take > > control of your XML. No limits. Just data. Click to get it now. > > http://sourceforge.net/powerbar/db2/ > > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > opensipstack-devel mailing list > > ope...@li... > > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > > > ------------------------------------------------------------------------ > > > > No virus found in this incoming message. > > Checked by AVG Free Edition. > > Version: 7.5.467 / Virus Database: 269.7.6/815 - Release Date: > 5/22/2007 3:49 PM > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > ------------------------------------------------------------------------ > Luggage? GPS? Comic books? > Check out fitting gifts for grads > <http://us.rd.yahoo.com/evt=48249/*http://search.yahoo.com/search?fr=oni_on_mail&p=graduation+gifts&cs=bz> > at Yahoo! Search. > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > ------------------------------------------------------------------------ > > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > ------------------------------------------------------------------------ > > No virus found in this incoming message. > Checked by AVG Free Edition. > Version: 7.5.467 / Virus Database: 269.7.6/815 - Release Date: 5/22/2007 3:49 PM > |
From: Andre S. <eds...@ya...> - 2007-05-23 06:41:32
|
Yes.. its there. "Ilian Jeri C. Pinzon" <ip...@so...> wrote: Please check if your OpenSIPStack code is complete. Verify that SoftPhoneInterface.h is present in opensipstack\include. Andre Silo wrote: > I get an error. > d:\SpftPhone\atlsip5.0\OpenSIPStackCtl.h(87) : fatal error C1083: > Cannot open include file: 'SoftPhoneInterface.h': No such file or > directory > > > */"Ilian Jeri C. Pinzon" /* wrote: > > Hi, > > I've checked in modifications to make the SF more lenient in checking > for unregistration events. This should fire Event_LogoutSuccessful > even > with a broken 200 OK. > > Regards, > Ilian > > Joegen E. Baclor wrote: > > Andre/Jeremy > > > > Come on guys, you give up so easily! If you are using OpenSBC, > the 200 > > OK sent to the Unregister does not contain a contact and an > expires. > > This bug caused OSSPhone to not distinguish the response > properly as a > > response to Unregister. So thanks to you, a new bug has been > patched. I > > have also brought this thing up with Ilian. His next wave of > updates > > should have made the Softphone immune to this situation. > > > > Joegen > > > > Andre Silo wrote: > > > >> Jeremy, > >> We just close the whole application when we logout. Re-login > does not work > >> > >> */Counet Jérémy /* wrote: > >> > >> Hi, > >> When I logout from the server with OSSPhone, is it impossible to > >> re-login to the server after Can you explain me why? > >> Regards, > >> Jeremy Counet. > >> > ------------------------------------------------------------------------- > >> This SF.net email is sponsored by DB2 Express > >> Download DB2 Express C - the FREE version of DB2 express and take > >> control of your XML. No limits. Just data. Click to get it now. > >> > http://sourceforge.net/powerbar/db2/_______________________________________________ > >> opensipstack-devel mailing list > >> ope...@li... > >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > >> > >> > >> > ------------------------------------------------------------------------ > >> Be a better Heartthrob. Get better relationship answers > >> from > >> someone who knows. > >> Yahoo! Answers - Check it out. > >> > ------------------------------------------------------------------------ > >> > >> > ------------------------------------------------------------------------- > >> This SF.net email is sponsored by DB2 Express > >> Download DB2 Express C - the FREE version of DB2 express and take > >> control of your XML. No limits. Just data. Click to get it now. > >> http://sourceforge.net/powerbar/db2/ > >> > ------------------------------------------------------------------------ > >> > >> _______________________________________________ > >> opensipstack-devel mailing list > >> ope...@li... > >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > >> > >> > > > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by DB2 Express > > Download DB2 Express C - the FREE version of DB2 express and take > > control of your XML. No limits. Just data. Click to get it now. > > http://sourceforge.net/powerbar/db2/ > > _______________________________________________ > > opensipstack-devel mailing list > > ope...@li... > > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > ------------------------------------------------------------------------ > Finding fabulous fares is fun. > Let Yahoo! FareChase search your favorite travel sites > > to find flight and hotel bargains. > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > ------------------------------------------------------------------------ > > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > ------------------------------------------------------------------------ > > No virus found in this incoming message. > Checked by AVG Free Edition. > Version: 7.5.467 / Virus Database: 269.7.6/815 - Release Date: 5/22/2007 3:49 PM > ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ opensipstack-devel mailing list ope...@li... https://lists.sourceforge.net/lists/listinfo/opensipstack-devel --------------------------------- Luggage? GPS? Comic books? Check out fitting gifts for grads at Yahoo! Search. |
From: Ilian J. C. P. <ip...@so...> - 2007-05-23 06:36:46
|
Please check if your OpenSIPStack code is complete. Verify that SoftPhoneInterface.h is present in opensipstack\include. Andre Silo wrote: > I get an error. > d:\SpftPhone\atlsip5.0\OpenSIPStackCtl.h(87) : fatal error C1083: > Cannot open include file: 'SoftPhoneInterface.h': No such file or > directory > > > */"Ilian Jeri C. Pinzon" <ip...@so...>/* wrote: > > Hi, > > I've checked in modifications to make the SF more lenient in checking > for unregistration events. This should fire Event_LogoutSuccessful > even > with a broken 200 OK. > > Regards, > Ilian > > Joegen E. Baclor wrote: > > Andre/Jeremy > > > > Come on guys, you give up so easily! If you are using OpenSBC, > the 200 > > OK sent to the Unregister does not contain a contact and an > expires. > > This bug caused OSSPhone to not distinguish the response > properly as a > > response to Unregister. So thanks to you, a new bug has been > patched. I > > have also brought this thing up with Ilian. His next wave of > updates > > should have made the Softphone immune to this situation. > > > > Joegen > > > > Andre Silo wrote: > > > >> Jeremy, > >> We just close the whole application when we logout. Re-login > does not work > >> > >> */Counet Jérémy /* wrote: > >> > >> Hi, > >> When I logout from the server with OSSPhone, is it impossible to > >> re-login to the server after… Can you explain me why? > >> Regards, > >> Jeremy Counet. > >> > ------------------------------------------------------------------------- > >> This SF.net email is sponsored by DB2 Express > >> Download DB2 Express C - the FREE version of DB2 express and take > >> control of your XML. No limits. Just data. Click to get it now. > >> > http://sourceforge.net/powerbar/db2/_______________________________________________ > >> opensipstack-devel mailing list > >> ope...@li... > >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > >> > >> > >> > ------------------------------------------------------------------------ > >> Be a better Heartthrob. Get better relationship answers > >> from > >> someone who knows. > >> Yahoo! Answers - Check it out. > >> > ------------------------------------------------------------------------ > >> > >> > ------------------------------------------------------------------------- > >> This SF.net email is sponsored by DB2 Express > >> Download DB2 Express C - the FREE version of DB2 express and take > >> control of your XML. No limits. Just data. Click to get it now. > >> http://sourceforge.net/powerbar/db2/ > >> > ------------------------------------------------------------------------ > >> > >> _______________________________________________ > >> opensipstack-devel mailing list > >> ope...@li... > >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > >> > >> > > > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by DB2 Express > > Download DB2 Express C - the FREE version of DB2 express and take > > control of your XML. No limits. Just data. Click to get it now. > > http://sourceforge.net/powerbar/db2/ > > _______________________________________________ > > opensipstack-devel mailing list > > ope...@li... > > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > ------------------------------------------------------------------------ > Finding fabulous fares is fun. > Let Yahoo! FareChase search your favorite travel sites > <http://farechase.yahoo.com/promo-generic-14795097;_ylc=X3oDMTFtNW45amVpBF9TAzk3NDA3NTg5BF9zAzI3MTk0ODEEcG9zAzEEc2VjA21haWx0YWdsaW5lBHNsawNxMS0wNw--> > to find flight and hotel bargains. > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > ------------------------------------------------------------------------ > > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > ------------------------------------------------------------------------ > > No virus found in this incoming message. > Checked by AVG Free Edition. > Version: 7.5.467 / Virus Database: 269.7.6/815 - Release Date: 5/22/2007 3:49 PM > |
From: Andre S. <eds...@ya...> - 2007-05-23 06:27:11
|
I get an error. d:\SpftPhone\atlsip5.0\OpenSIPStackCtl.h(87) : fatal error C1083: Cannot open include file: 'SoftPhoneInterface.h': No such file or directory "Ilian Jeri C. Pinzon" <ip...@so...> wrote: Hi, I've checked in modifications to make the SF more lenient in checking for unregistration events. This should fire Event_LogoutSuccessful even with a broken 200 OK. Regards, Ilian Joegen E. Baclor wrote: > Andre/Jeremy > > Come on guys, you give up so easily! If you are using OpenSBC, the 200 > OK sent to the Unregister does not contain a contact and an expires. > This bug caused OSSPhone to not distinguish the response properly as a > response to Unregister. So thanks to you, a new bug has been patched. I > have also brought this thing up with Ilian. His next wave of updates > should have made the Softphone immune to this situation. > > Joegen > > Andre Silo wrote: > >> Jeremy, >> We just close the whole application when we logout. Re-login does not work >> >> */Counet Jérémy /* wrote: >> >> Hi, >> When I logout from the server with OSSPhone, is it impossible to >> re-login to the server after Can you explain me why? >> Regards, >> Jeremy Counet. >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by DB2 Express >> Download DB2 Express C - the FREE version of DB2 express and take >> control of your XML. No limits. Just data. Click to get it now. >> http://sourceforge.net/powerbar/db2/_______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> >> >> ------------------------------------------------------------------------ >> Be a better Heartthrob. Get better relationship answers >> from >> someone who knows. >> Yahoo! Answers - Check it out. >> ------------------------------------------------------------------------ >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by DB2 Express >> Download DB2 Express C - the FREE version of DB2 express and take >> control of your XML. No limits. Just data. Click to get it now. >> http://sourceforge.net/powerbar/db2/ >> ------------------------------------------------------------------------ >> >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> >> > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ opensipstack-devel mailing list ope...@li... https://lists.sourceforge.net/lists/listinfo/opensipstack-devel --------------------------------- Finding fabulous fares is fun. Let Yahoo! FareChase search your favorite travel sites to find flight and hotel bargains. |
From: Ilian J. C. P. <ip...@so...> - 2007-05-23 04:12:03
|
Hi, I've checked in modifications to make the SF more lenient in checking for unregistration events. This should fire Event_LogoutSuccessful even with a broken 200 OK. Regards, Ilian Joegen E. Baclor wrote: > Andre/Jeremy > > Come on guys, you give up so easily! If you are using OpenSBC, the 200 > OK sent to the Unregister does not contain a contact and an expires. > This bug caused OSSPhone to not distinguish the response properly as a > response to Unregister. So thanks to you, a new bug has been patched. I > have also brought this thing up with Ilian. His next wave of updates > should have made the Softphone immune to this situation. > > Joegen > > Andre Silo wrote: > >> Jeremy, >> We just close the whole application when we logout. Re-login does not work >> >> */Counet Jérémy <jer...@ze...>/* wrote: >> >> Hi, >> When I logout from the server with OSSPhone, is it impossible to >> re-login to the server after… Can you explain me why? >> Regards, >> Jeremy Counet. >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by DB2 Express >> Download DB2 Express C - the FREE version of DB2 express and take >> control of your XML. No limits. Just data. Click to get it now. >> http://sourceforge.net/powerbar/db2/_______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> >> >> ------------------------------------------------------------------------ >> Be a better Heartthrob. Get better relationship answers >> <http://us.rd.yahoo.com/evt=48255/*http://answers.yahoo.com/dir/_ylc=X3oDMTI5MGx2aThyBF9TAzIxMTU1MDAzNTIEX3MDMzk2NTQ1MTAzBHNlYwNCQUJwaWxsYXJfTklfMzYwBHNsawNQcm9kdWN0X3F1ZXN0aW9uX3BhZ2U-?link=list&sid=396545433>from >> someone who knows. >> Yahoo! Answers - Check it out. >> ------------------------------------------------------------------------ >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by DB2 Express >> Download DB2 Express C - the FREE version of DB2 express and take >> control of your XML. No limits. Just data. Click to get it now. >> http://sourceforge.net/powerbar/db2/ >> ------------------------------------------------------------------------ >> >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> >> > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > |
From: Joegen E. B. <jb...@so...> - 2007-05-22 01:05:19
|
Andre, Please send compressed level 5 SIP and Opal logs. Andre Silo wrote: > Hello Ilian, > > ATLSIP --> OSBC(Full Mode) --> Carrier Gateway(IP Auth only) --> ROW > Routes > > Have you found why is there no voice? Because I tried using Xlite and > has voice. > > Andre > > ------------------------------------------------------------------------ > Give spam the boot. Take control with tough spam protection > <http://us.rd.yahoo.com/evt=47960/*http://advision.webevents.yahoo.com/mailbeta/newmail_html.html> > in the all-new Yahoo! Mail Beta. > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > ------------------------------------------------------------------------ > > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > |
From: Andre S. <eds...@ya...> - 2007-05-22 00:41:09
|
Hello Ilian, ATLSIP --> OSBC(Full Mode) --> Carrier Gateway(IP Auth only) --> ROW Routes Have you found why is there no voice? Because I tried using Xlite and has voice. Andre --------------------------------- Give spam the boot. Take control with tough spam protection in the all-new Yahoo! Mail Beta. |