opensipstack-devel Mailing List for OpenSIPStack (Page 82)
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: <jo...@pl...> - 2006-10-25 17:41:57
|
inline ... ----- Original Message ----- From: "David Craigon" <dav...@gr...> To: <ope...@li...> Sent: Thursday, October 26, 2006 12:23 AM Subject: [OpenSIPStack] Using OpenSBC > Hello everyone, > I am trying to work out how to use OpenSBC as a back to back user > agent. I've got it all installed and running, and can configure it via > port 9999. I'm trying to configure the following simple set up. > > > |--------------------| x|----------|y z|--------| > | Naff software SIP |----------| Open SBC |-----| IP PBX | > | phone | |----------| |--------| > |--------------------| > > X and y are IP addresses. > > What I want to do first is get my SIP software phone to ring the IP PBX > via OpenSBC. The idea is that you would ring a number on the phone (say > 1234), which would be translated to 1234@x. This call would then be sent > to the IP PBX, hopefully as 1234@z. > > So far, I've managed to configure my softphone to register with OpenSBC. > I have the configuration options on the web menu: > > ------ > OpenSBC Configuration Page This is where you set Log Level for for pwlib as well as Admin account and passwrod > > OpenSBC General Parameters This contains general params for opensbc such as sip logging, default timeout, thread pool size etc. > > Local Domain Accounts Local domain accounts allows you to configure user accounts or the registrar > > OpenSBC Routes > This is where you set the B2BUA routes. > Relay Routes This is where you set the routes to be releayed to remote a remote domain. > > Upper Registration Routes Allows OpenSBc o hijack contacts for registration bound to a remote domain > ------ > > What do I need to configure to make my set up work? I'm guessing that I > need to put in an OpenSBC route, or a relay route, to route calls from > the softphone to the PBX. What's the difference between an OpenSBC route > and a relay route? What syntax do the rules take? You supply the example > : [sip:*@example.opensipstack.org:*] sip:p1.opensipstack.org:5060, > sip:p2.opensipstack.org:5060. What does this mean? You need to put the routes in OpenSBC route if the To URI of your INVITE resolves to the IP Address of OpenSBC either using A Record or SRV Record DNS lookup. For example, if OpenSBC resides on 192.168.0.10, when it receives an incoming invite, it checks the to URI if it resolves to 192.168.0.10. If it does, it would considered a local domain call and would use the OpenSBC Route for routing this call. If its not in the static routes, OpenSBc would then check the registration table. In cases where the To URI is not resolving to the OpenSBC address, it would assume that you are attempting to relay a message to a remote domain. OpenSBC, in this case would go into pure stateful proxy mode and use the Relay Routes to route the call. In cases where relay route does not contain an entry for the call, it would try to resolve the final destination using the to URI or using the Route Set if present. As for the syntax, let me give you an example. Let us say I would want to route calls to 1234 to a certain gateway at gw01.somedomain.com. Assume openSBC is hosted in a box with A-Record set to mysip.domain.com. You route entry in this case would be: [sip:12...@my...*] sip:12...@gw... The first element enclosed in [] is the wildcard matching filter. Upon receipt of an Invite, OpenSBC would try to match the To URI using all available filters. In this case, To: "Alice" 12...@my...:5060 would match this filter. The "*" means anycall bound for 12...@ms... regardless of the port. the next element in the route entry would be the destination address. When the call is finally routed, OpenSBc would rewrite the startline URI with the address you provided here. (Inbound Invite) INVITE sip:12...@my... SIP/2.0 From: sip:the...@my...;tag=mytag-123456 To: "Alice" <sip:12...@my...> . . . (Outbound Invite) INVITE sip:gw01.somedomain.com SIP/2.0 From: sip:the...@my...;tag=mytag-123456 To: "Alice" <sip:12...@my...> . . . Hope this helps. Joegen > > Thanks for any help you can give to this total beginner, > > David > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job > easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel |
From: David C. <dav...@gr...> - 2006-10-25 16:24:12
|
Hello everyone, I am trying to work out how to use OpenSBC as a back to back user agent. I've got it all installed and running, and can configure it via port 9999. I'm trying to configure the following simple set up. =20 =20 |--------------------| x|----------|y z|--------| | Naff software SIP |----------| Open SBC |-----| IP PBX |=20 | phone | |----------| |--------| |--------------------| =20 X and y are IP addresses. What I want to do first is get my SIP software phone to ring the IP PBX via OpenSBC. The idea is that you would ring a number on the phone (say 1234), which would be translated to 1234@x. This call would then be sent to the IP PBX, hopefully as 1234@z. So far, I've managed to configure my softphone to register with OpenSBC. I have the configuration options on the web menu: ------ OpenSBC Configuration Page=20 OpenSBC General Parameters=20 Local Domain Accounts=20 OpenSBC Routes=20 Relay Routes=20 Upper Registration Routes=20 ------ What do I need to configure to make my set up work? I'm guessing that I need to put in an OpenSBC route, or a relay route, to route calls from the softphone to the PBX. What's the difference between an OpenSBC route and a relay route? What syntax do the rules take? You supply the example : [sip:*@example.opensipstack.org:*] sip:p1.opensipstack.org:5060, sip:p2.opensipstack.org:5060. What does this mean? Thanks for any help you can give to this total beginner, David |
From: Borislav P. <bor...@ab...> - 2006-10-24 06:25:17
|
Hi, i am still trying ATLSIP and I noticed that an exception is thrown wh= en MessengerManager is destroyed(); (The exception appers only if Initial= izeSIP is called. If i do not call InitializeSIP then there is no excepti= on) The exception: First-chance exception at 0x7c812a5b in PchOSSTest.exe: 0x0000071A: The r= emote procedure call was cancelled. I made a console test program ( below ): when i enter '0' the sipstack starts destroying and then throws an except= ion somewhere. (The messenger class is modified a little - the atlsip ref= erence and all FIRE_ events are removed) I am a newbie in C++ so may be I am doing something wrong but i want to a= sk just in case if there is such a known issue. #include "stdafx.h" #include <iostream> #include "Messenger.h" #include "windows.h" PDECLARE_PROCESS( DummyPProcess, PProcess,"PchOSSApi","PchOSSApi",MAJOR_V= ERSION,MINOR_VERSION,BUILD_TYPE,BUILD_NUMBER) void DummyPProcess::Main(){}; static DummyPProcess process; // active for the life of the DLL int _tmain(int argc, _TCHAR* argv[]) { MessengerManager * manager =3D new MessengerManager(0, 0); manager->InitializeSIP();=09 char ch; do { cin >> ch; =09 } while (ch !=3D '0'); delete manager; =09 return 0; } ----------------------------------------------------------------- Survivor BG. =CE=F6=E5=EB=FF=E2=E0=ED=E5=F2=EE =EF=F0=EE=E4=FA=EB=E6=E0=E2= =E0 =ED=E0 www.survivor.btv.bg=20 |
From: Borislav P. <bor...@ab...> - 2006-10-17 14:26:37
|
Hi, can somebody give an example how to register when behind nat. For example How can i use a STUN server. I set the STUN server in Messenger ( Messenger->SetSTUNServer(..) ), but my local address is being sent in the via and the contact headers and not the router address. Should I do something "manually" to set the right address in those headers? ----------------------------------------------------------------- Survivor BG. =CE=F6=E5=EB=FF=E2=E0=ED=E5=F2=EE =EF=F0=EE=E4=FA=EB=E6=E0=E2= =E0 =ED=E0 www.survivor.btv.bg=20 |
From: <bor...@ma...> - 2006-10-17 14:19:46
|
Hi, can somebody give an example how to register when behind nat. For example How can i use a STUN server. I set the STUN server in Messenger ( Messenger->SetSTUNServer(..) ), but my local address is being sent in the via and the contact headers and not the router address. Should I do something "manually" to set the right address in those headers?</br>------------------= -----------</br> <a target=3D'_blank' href=3D"http://mail.bg/ads/adclick.php?bannerid=3D5037&= amp;zoneid=3D13&source=3D&dest=3Dhttp%3A%2F%2Fwww.mycv.bg%2F&ism= ap=3D"> =D0=E5=E3=E8=F1=F2=F0=E8=F0=E0=E9 =D2=E2=EE=E5=F2=EE CV</br> =E2 http://www.myCV.bg</a><div id=3D"beacon_5037" style=3D"position: absolut= e; left: 0px; top: 0px; visibility: hidden;"><img src=3D'http://mail.bg/ads/= adlog.php?bannerid=3D5037&clientid=3D3584&zoneid=3D13&source=3D&= amp;block=3D0&capping=3D0&cb=3D959b00faf4297f09ffbcf00aa966ee59' wid= th=3D'0' height=3D'0' alt=3D'' style=3D'width: 0px; height: 0px;'></div> |
From: Joegen E. B. <jo...@pl...> - 2006-10-16 17:20:14
|
Hi JF, We are currently running a commercial version of OpenSBC in one of our boxes and it could easily handle a hundred connections in full media proxy mode. As per the exact number of connections, this would only be limited by the 1024 lwp per process limit. Media proxy mode requires 2 threads per call for back to back media processing. So the formula to compute this would be Max = (LWP_LIMIT/2) - T1 - S1 where T1 is the size of the transaction thread pool and S1 is the size of the session thread pool. T1 and S1 value can be modified using the HTTP Admin. For none media proxy calls, the only limit would be your processor. This is not taking into consideration any bugs that would appear only during heavy loads like race conditions and deadlocks. If you experience one, please report the bug together with a stack strace. A patch would be better of course ;-) Joegen JF wrote: > Hi, > > How many simultaneous calls have been achieved with OpenSBC and under > what conditions (hardware configuration, media bandwidth, etc.)? > Also, is there any known limit on SIP registrations? > > JF > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > |
From: Bruce F. <bfe...@ba...> - 2006-10-16 15:38:47
|
That worked! Thanks Joegen E. Baclor wrote: > Hi Bruce, > > I understand whats happening now. Look for the file > > oss-application.conf.xml > > and copy it in the same folder as the executable and try again. > > Joegen > > > Bruce Ferrell wrote: > >>OK fresh download and recompiled on Suse 10.0 >> >> g++ -v >>Using built-in specs. >>Target: i586-suse-linux >>Configured with: ../configure --enable-threads=posix --prefix=/usr >>--with-local-prefix=/usr/local --infodir=/usr/share/info >>--mandir=/usr/share/man --libdir=/usr/lib --libexecdir=/usr/lib >>--enable-languages=c,c++,objc,f95,java,ada --disable-checking >>--with-gxx-include-dir=/usr/include/c++/4.0.2 --enable-java-awt=gtk >>--disable-libjava-multilib --with-slibdir=/lib --with-system-zlib >>--enable-shared --enable-__cxa_atexit --without-system-libunwind >>--host=i586-suse-linux >>Thread model: posix >>gcc version 4.0.2 20050901 (prerelease) (SUSE Linux) >> >> >>./opensbc -x -c >>All output for OpenSIPStack Application is to console. >>2006/10/14 23:56:12.069 OpenSIPSta...pplication Message Starting service >>process "OpenSIPStack Application" v1.1.3 >>2006/10/14 23:56:12.069 OpenSIPSta...pplication Debug3 OpenSIPStack >>Application Process is starting >>2006/10/14 23:56:12.136 OpenSIPSta...pplication Info Opened master >>socket for HTTP Service: 8888 >>2006/10/14 23:56:12.138 OpenSIPSta...pplication Debug3 *** CREATED *** >>SIPTimer Manager >>2006/10/14 23:56:12.141 OpenSIPSta...pplication Debug3 OpenSBC STARTED >>2006/10/14 23:56:12.142 OpenSIPSta...pplication Debug3 Configuration >>change detected >>2006/10/14 23:56:12.144 OpenSIPSta...pplication Debug3 OpalMan Created >>manager. >>2006/10/14 23:56:12.148 OpenSIPSta...pplication Debug3 Found 2 interfaces >>2006/10/14 23:56:12.150 OpenSIPSta...pplication Debug3 Found Interface >>lo addr=127.0.0.1 >>2006/10/14 23:56:12.151 OpenSIPSta...pplication Debug3 Opening Listener >>at 127.0.0.1:5060 >>2006/10/14 23:56:12.152 OpenSIPSta...pplication Debug3 *** LISTENER >>STARTED *** 127.0.0.1:5060 >>2006/10/14 23:56:12.154 OpenSIPSta...pplication Debug3 Found Interface >>eth1 addr=192.0.2.4 >>2006/10/14 23:56:12.155 OpenSIPSta...pplication Debug3 Opening Listener >>at 192.0.2.4:5060 >>2006/10/14 23:56:12.158 OpenSIPSta...pplication Debug3 *** LISTENER >>STARTED *** 192.0.2.4:5060 [*** DEFAULT LISTENER ***] >>2006/10/14 23:58:07.339 Housekeeper Warning Stopping service >>process "OpenSIPStack Application" v1.1.3 >>2006/10/14 23:58:07.385 Housekeeper Debug HTTPSVC Closing >>listener socket on port 8888 >>2006/10/14 23:58:07.386 Housekeeper Warning OpenSIPStack >>Application stopped. >> >> >>port 9999 has nothing; 8888 I get an open screen with the following link: >> >>http://localhost:8888/OpenSIPStack%20Application%20Configuration%20Page >> >>with an http user, http password and log level entry boxes >> >> >>Joegen E. Baclor wrote: >> >> >>>Did you download from sourceforge or from opensipstack.org? >>>Sourceforge tarballs lags behind. OpenSBC current version is 1.1.1. >>>Try compiling from CVS or use the tarballs from opensipstack.org >>>download section. >>> >>>Bruce Ferrell wrote: >>> >>> >>> >>>>I'm using the linux tarball >>>> >>>>Joegen E. Baclor wrote: >>>> >>>> >>>> >>>> >>>>>Hi Bruce, >>>>> >>>>>You sure you are using CVS copy? I double checked >>>>>oss-application.conf.xml and HTTPPort is set to 9999. Can you verify >>>>>this? Also, you shouldn't be getting a login screen if HTTP User is >>>>>not yet set. If you suspect corruption in the config, you may delete >>>>>the entire registry setting in HKEY_LOCAL_MACHINE/Software/opensipstack.org. >>>>> >>>>>Joegen >>>>> >>>>>Bruce Ferrell wrote: >>>>> >>>>> >>>>> >>>>> >>>>> >>>>>>Joegen E. Baclor wrote: >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>>>Bruce Ferrell wrote: >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>>>is there a sample config for opensbc? I looked in cvs and the code is >>>>>>>>unclear on what the configuration options might be >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>> >>>>>>>Hi Bruce, >>>>>>> >>>>>>>Nice to see you here. The configuration options for opensbc can be >>>>>>>accessed via http on port 9999. This should be http://localhost:9999. >>>>>>>The config params goes with a brief description of what they are for as >>>>>>>well as sample entries. Just ask if you need further clarification and >>>>>>>I would be happy to oblige. >>>>>>> >>>>>>>Joegen >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>> >>>>>>I find I can connect to localhost:8888 but not 9999. I'm greeted by a >>>>>>login page but I have no idea what to put in there to authenticate myself >>>>>> >>>>>>------------------------------------------------------------------------- >>>>>>Using Tomcat but need to do more? Need to support web services, security? >>>>>>Get stuff done quickly with pre-integrated technology to make your job easier >>>>>>Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo >>>>>>http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 >>>>>>_______________________________________________ >>>>>>opensipstack-devel mailing list >>>>>>ope...@li... >>>>>>https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>>>>> >>>>>> >>>>>> >>>>>> >>>>> >>>>>------------------------------------------------------------------------- >>>>>Using Tomcat but need to do more? Need to support web services, security? >>>>>Get stuff done quickly with pre-integrated technology to make your job easier >>>>>Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo >>>>>http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 >>>>>_______________________________________________ >>>>>opensipstack-devel mailing list >>>>>ope...@li... >>>>>https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>>>> >>>>> >>>>> >>>> >>>> >>>> >>> >>>------------------------------------------------------------------------- >>>Using Tomcat but need to do more? Need to support web services, security? >>>Get stuff done quickly with pre-integrated technology to make your job easier >>>Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo >>>http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 >>>_______________________________________________ >>>opensipstack-devel mailing list >>>ope...@li... >>>https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>> >>> >> >> > > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > -- One day at a time, one second if that's what it takes |
From: JF <jfk...@gm...> - 2006-10-16 09:07:40
|
Hi, How many simultaneous calls have been achieved with OpenSBC and under what conditions (hardware configuration, media bandwidth, etc.)? Also, is there any known limit on SIP registrations? JF |
From: Joegen E. B. <jo...@pl...> - 2006-10-15 10:00:34
|
Hi Bruce, I understand whats happening now. Look for the file oss-application.conf.xml and copy it in the same folder as the executable and try again. Joegen Bruce Ferrell wrote: > OK fresh download and recompiled on Suse 10.0 > > g++ -v > Using built-in specs. > Target: i586-suse-linux > Configured with: ../configure --enable-threads=posix --prefix=/usr > --with-local-prefix=/usr/local --infodir=/usr/share/info > --mandir=/usr/share/man --libdir=/usr/lib --libexecdir=/usr/lib > --enable-languages=c,c++,objc,f95,java,ada --disable-checking > --with-gxx-include-dir=/usr/include/c++/4.0.2 --enable-java-awt=gtk > --disable-libjava-multilib --with-slibdir=/lib --with-system-zlib > --enable-shared --enable-__cxa_atexit --without-system-libunwind > --host=i586-suse-linux > Thread model: posix > gcc version 4.0.2 20050901 (prerelease) (SUSE Linux) > > > ./opensbc -x -c > All output for OpenSIPStack Application is to console. > 2006/10/14 23:56:12.069 OpenSIPSta...pplication Message Starting service > process "OpenSIPStack Application" v1.1.3 > 2006/10/14 23:56:12.069 OpenSIPSta...pplication Debug3 OpenSIPStack > Application Process is starting > 2006/10/14 23:56:12.136 OpenSIPSta...pplication Info Opened master > socket for HTTP Service: 8888 > 2006/10/14 23:56:12.138 OpenSIPSta...pplication Debug3 *** CREATED *** > SIPTimer Manager > 2006/10/14 23:56:12.141 OpenSIPSta...pplication Debug3 OpenSBC STARTED > 2006/10/14 23:56:12.142 OpenSIPSta...pplication Debug3 Configuration > change detected > 2006/10/14 23:56:12.144 OpenSIPSta...pplication Debug3 OpalMan Created > manager. > 2006/10/14 23:56:12.148 OpenSIPSta...pplication Debug3 Found 2 interfaces > 2006/10/14 23:56:12.150 OpenSIPSta...pplication Debug3 Found Interface > lo addr=127.0.0.1 > 2006/10/14 23:56:12.151 OpenSIPSta...pplication Debug3 Opening Listener > at 127.0.0.1:5060 > 2006/10/14 23:56:12.152 OpenSIPSta...pplication Debug3 *** LISTENER > STARTED *** 127.0.0.1:5060 > 2006/10/14 23:56:12.154 OpenSIPSta...pplication Debug3 Found Interface > eth1 addr=192.0.2.4 > 2006/10/14 23:56:12.155 OpenSIPSta...pplication Debug3 Opening Listener > at 192.0.2.4:5060 > 2006/10/14 23:56:12.158 OpenSIPSta...pplication Debug3 *** LISTENER > STARTED *** 192.0.2.4:5060 [*** DEFAULT LISTENER ***] > 2006/10/14 23:58:07.339 Housekeeper Warning Stopping service > process "OpenSIPStack Application" v1.1.3 > 2006/10/14 23:58:07.385 Housekeeper Debug HTTPSVC Closing > listener socket on port 8888 > 2006/10/14 23:58:07.386 Housekeeper Warning OpenSIPStack > Application stopped. > > > port 9999 has nothing; 8888 I get an open screen with the following link: > > http://localhost:8888/OpenSIPStack%20Application%20Configuration%20Page > > with an http user, http password and log level entry boxes > > > Joegen E. Baclor wrote: > >> Did you download from sourceforge or from opensipstack.org? >> Sourceforge tarballs lags behind. OpenSBC current version is 1.1.1. >> Try compiling from CVS or use the tarballs from opensipstack.org >> download section. >> >> Bruce Ferrell wrote: >> >> >>> I'm using the linux tarball >>> >>> Joegen E. Baclor wrote: >>> >>> >>> >>>> Hi Bruce, >>>> >>>> You sure you are using CVS copy? I double checked >>>> oss-application.conf.xml and HTTPPort is set to 9999. Can you verify >>>> this? Also, you shouldn't be getting a login screen if HTTP User is >>>> not yet set. If you suspect corruption in the config, you may delete >>>> the entire registry setting in HKEY_LOCAL_MACHINE/Software/opensipstack.org. >>>> >>>> Joegen >>>> >>>> Bruce Ferrell wrote: >>>> >>>> >>>> >>>> >>>>> Joegen E. Baclor wrote: >>>>> >>>>> >>>>> >>>>> >>>>> >>>>>> Bruce Ferrell wrote: >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>>> is there a sample config for opensbc? I looked in cvs and the code is >>>>>>> unclear on what the configuration options might be >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>> Hi Bruce, >>>>>> >>>>>> Nice to see you here. The configuration options for opensbc can be >>>>>> accessed via http on port 9999. This should be http://localhost:9999. >>>>>> The config params goes with a brief description of what they are for as >>>>>> well as sample entries. Just ask if you need further clarification and >>>>>> I would be happy to oblige. >>>>>> >>>>>> Joegen >>>>>> >>>>>> >>>>>> >>>>>> >>>>> I find I can connect to localhost:8888 but not 9999. I'm greeted by a >>>>> login page but I have no idea what to put in there to authenticate myself >>>>> >>>>> ------------------------------------------------------------------------- >>>>> Using Tomcat but need to do more? Need to support web services, security? >>>>> Get stuff done quickly with pre-integrated technology to make your job easier >>>>> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo >>>>> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 >>>>> _______________________________________________ >>>>> opensipstack-devel mailing list >>>>> ope...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>>>> >>>>> >>>>> >>>>> >>>> ------------------------------------------------------------------------- >>>> Using Tomcat but need to do more? Need to support web services, security? >>>> Get stuff done quickly with pre-integrated technology to make your job easier >>>> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo >>>> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 >>>> _______________________________________________ >>>> opensipstack-devel mailing list >>>> ope...@li... >>>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>>> >>>> >>>> >>> >>> >> >> ------------------------------------------------------------------------- >> Using Tomcat but need to do more? Need to support web services, security? >> Get stuff done quickly with pre-integrated technology to make your job easier >> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo >> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> >> > > |
From: Bruce F. <bfe...@ba...> - 2006-10-15 07:03:42
|
OK fresh download and recompiled on Suse 10.0 g++ -v Using built-in specs. Target: i586-suse-linux Configured with: ../configure --enable-threads=posix --prefix=/usr --with-local-prefix=/usr/local --infodir=/usr/share/info --mandir=/usr/share/man --libdir=/usr/lib --libexecdir=/usr/lib --enable-languages=c,c++,objc,f95,java,ada --disable-checking --with-gxx-include-dir=/usr/include/c++/4.0.2 --enable-java-awt=gtk --disable-libjava-multilib --with-slibdir=/lib --with-system-zlib --enable-shared --enable-__cxa_atexit --without-system-libunwind --host=i586-suse-linux Thread model: posix gcc version 4.0.2 20050901 (prerelease) (SUSE Linux) ./opensbc -x -c All output for OpenSIPStack Application is to console. 2006/10/14 23:56:12.069 OpenSIPSta...pplication Message Starting service process "OpenSIPStack Application" v1.1.3 2006/10/14 23:56:12.069 OpenSIPSta...pplication Debug3 OpenSIPStack Application Process is starting 2006/10/14 23:56:12.136 OpenSIPSta...pplication Info Opened master socket for HTTP Service: 8888 2006/10/14 23:56:12.138 OpenSIPSta...pplication Debug3 *** CREATED *** SIPTimer Manager 2006/10/14 23:56:12.141 OpenSIPSta...pplication Debug3 OpenSBC STARTED 2006/10/14 23:56:12.142 OpenSIPSta...pplication Debug3 Configuration change detected 2006/10/14 23:56:12.144 OpenSIPSta...pplication Debug3 OpalMan Created manager. 2006/10/14 23:56:12.148 OpenSIPSta...pplication Debug3 Found 2 interfaces 2006/10/14 23:56:12.150 OpenSIPSta...pplication Debug3 Found Interface lo addr=127.0.0.1 2006/10/14 23:56:12.151 OpenSIPSta...pplication Debug3 Opening Listener at 127.0.0.1:5060 2006/10/14 23:56:12.152 OpenSIPSta...pplication Debug3 *** LISTENER STARTED *** 127.0.0.1:5060 2006/10/14 23:56:12.154 OpenSIPSta...pplication Debug3 Found Interface eth1 addr=192.0.2.4 2006/10/14 23:56:12.155 OpenSIPSta...pplication Debug3 Opening Listener at 192.0.2.4:5060 2006/10/14 23:56:12.158 OpenSIPSta...pplication Debug3 *** LISTENER STARTED *** 192.0.2.4:5060 [*** DEFAULT LISTENER ***] 2006/10/14 23:58:07.339 Housekeeper Warning Stopping service process "OpenSIPStack Application" v1.1.3 2006/10/14 23:58:07.385 Housekeeper Debug HTTPSVC Closing listener socket on port 8888 2006/10/14 23:58:07.386 Housekeeper Warning OpenSIPStack Application stopped. port 9999 has nothing; 8888 I get an open screen with the following link: http://localhost:8888/OpenSIPStack%20Application%20Configuration%20Page with an http user, http password and log level entry boxes Joegen E. Baclor wrote: > Did you download from sourceforge or from opensipstack.org? > Sourceforge tarballs lags behind. OpenSBC current version is 1.1.1. > Try compiling from CVS or use the tarballs from opensipstack.org > download section. > > Bruce Ferrell wrote: > >>I'm using the linux tarball >> >>Joegen E. Baclor wrote: >> >> >>>Hi Bruce, >>> >>>You sure you are using CVS copy? I double checked >>>oss-application.conf.xml and HTTPPort is set to 9999. Can you verify >>>this? Also, you shouldn't be getting a login screen if HTTP User is >>>not yet set. If you suspect corruption in the config, you may delete >>>the entire registry setting in HKEY_LOCAL_MACHINE/Software/opensipstack.org. >>> >>>Joegen >>> >>>Bruce Ferrell wrote: >>> >>> >>> >>>>Joegen E. Baclor wrote: >>>> >>>> >>>> >>>> >>>>>Bruce Ferrell wrote: >>>>> >>>>> >>>>> >>>>> >>>>> >>>>>>is there a sample config for opensbc? I looked in cvs and the code is >>>>>>unclear on what the configuration options might be >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>> >>>>>Hi Bruce, >>>>> >>>>>Nice to see you here. The configuration options for opensbc can be >>>>>accessed via http on port 9999. This should be http://localhost:9999. >>>>>The config params goes with a brief description of what they are for as >>>>>well as sample entries. Just ask if you need further clarification and >>>>>I would be happy to oblige. >>>>> >>>>>Joegen >>>>> >>>>> >>>>> >>>> >>>>I find I can connect to localhost:8888 but not 9999. I'm greeted by a >>>>login page but I have no idea what to put in there to authenticate myself >>>> >>>>------------------------------------------------------------------------- >>>>Using Tomcat but need to do more? Need to support web services, security? >>>>Get stuff done quickly with pre-integrated technology to make your job easier >>>>Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo >>>>http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 >>>>_______________________________________________ >>>>opensipstack-devel mailing list >>>>ope...@li... >>>>https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>>> >>>> >>>> >>> >>>------------------------------------------------------------------------- >>>Using Tomcat but need to do more? Need to support web services, security? >>>Get stuff done quickly with pre-integrated technology to make your job easier >>>Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo >>>http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 >>>_______________________________________________ >>>opensipstack-devel mailing list >>>ope...@li... >>>https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>> >>> >> >> > > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > -- One day at a time, one second if that's what it takes |
From: Bruce F. <bfe...@ba...> - 2006-10-15 06:30:53
|
Product Name: OpenSIPStack Application Manufacturer: opensipstack.org Version : 1.1.3 System : Linux-i686 2.6.13-15.12-default downloaded from http://opensourcesip.org/ I think I'll download from opensipstack.org and get back to you Joegen E. Baclor wrote: > Did you download from sourceforge or from opensipstack.org? > Sourceforge tarballs lags behind. OpenSBC current version is 1.1.1. > Try compiling from CVS or use the tarballs from opensipstack.org > download section. > > Bruce Ferrell wrote: > >>I'm using the linux tarball >> >>Joegen E. Baclor wrote: >> >> >>>Hi Bruce, >>> >>>You sure you are using CVS copy? I double checked >>>oss-application.conf.xml and HTTPPort is set to 9999. Can you verify >>>this? Also, you shouldn't be getting a login screen if HTTP User is >>>not yet set. If you suspect corruption in the config, you may delete >>>the entire registry setting in HKEY_LOCAL_MACHINE/Software/opensipstack.org. >>> >>>Joegen >>> >>>Bruce Ferrell wrote: >>> >>> >>> >>>>Joegen E. Baclor wrote: >>>> >>>> >>>> >>>> >>>>>Bruce Ferrell wrote: >>>>> >>>>> >>>>> >>>>> >>>>> >>>>>>is there a sample config for opensbc? I looked in cvs and the code is >>>>>>unclear on what the configuration options might be >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>> >>>>>Hi Bruce, >>>>> >>>>>Nice to see you here. The configuration options for opensbc can be >>>>>accessed via http on port 9999. This should be http://localhost:9999. >>>>>The config params goes with a brief description of what they are for as >>>>>well as sample entries. Just ask if you need further clarification and >>>>>I would be happy to oblige. >>>>> >>>>>Joegen >>>>> >>>>> >>>>> >>>> >>>>I find I can connect to localhost:8888 but not 9999. I'm greeted by a >>>>login page but I have no idea what to put in there to authenticate myself >>>> >>>>------------------------------------------------------------------------- >>>>Using Tomcat but need to do more? Need to support web services, security? >>>>Get stuff done quickly with pre-integrated technology to make your job easier >>>>Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo >>>>http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 >>>>_______________________________________________ >>>>opensipstack-devel mailing list >>>>ope...@li... >>>>https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>>> >>>> >>>> >>> >>>------------------------------------------------------------------------- >>>Using Tomcat but need to do more? Need to support web services, security? >>>Get stuff done quickly with pre-integrated technology to make your job easier >>>Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo >>>http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 >>>_______________________________________________ >>>opensipstack-devel mailing list >>>ope...@li... >>>https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>> >>> >> >> > > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > -- One day at a time, one second if that's what it takes |
From: Joegen E. B. <jo...@pl...> - 2006-10-14 23:50:22
|
Did you download from sourceforge or from opensipstack.org? Sourceforge tarballs lags behind. OpenSBC current version is 1.1.1. Try compiling from CVS or use the tarballs from opensipstack.org download section. Bruce Ferrell wrote: > I'm using the linux tarball > > Joegen E. Baclor wrote: > >> Hi Bruce, >> >> You sure you are using CVS copy? I double checked >> oss-application.conf.xml and HTTPPort is set to 9999. Can you verify >> this? Also, you shouldn't be getting a login screen if HTTP User is >> not yet set. If you suspect corruption in the config, you may delete >> the entire registry setting in HKEY_LOCAL_MACHINE/Software/opensipstack.org. >> >> Joegen >> >> Bruce Ferrell wrote: >> >> >>> Joegen E. Baclor wrote: >>> >>> >>> >>>> Bruce Ferrell wrote: >>>> >>>> >>>> >>>> >>>>> is there a sample config for opensbc? I looked in cvs and the code is >>>>> unclear on what the configuration options might be >>>>> >>>>> >>>>> >>>>> >>>>> >>>> Hi Bruce, >>>> >>>> Nice to see you here. The configuration options for opensbc can be >>>> accessed via http on port 9999. This should be http://localhost:9999. >>>> The config params goes with a brief description of what they are for as >>>> well as sample entries. Just ask if you need further clarification and >>>> I would be happy to oblige. >>>> >>>> Joegen >>>> >>>> >>>> >>> I find I can connect to localhost:8888 but not 9999. I'm greeted by a >>> login page but I have no idea what to put in there to authenticate myself >>> >>> ------------------------------------------------------------------------- >>> Using Tomcat but need to do more? Need to support web services, security? >>> Get stuff done quickly with pre-integrated technology to make your job easier >>> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo >>> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 >>> _______________________________________________ >>> opensipstack-devel mailing list >>> ope...@li... >>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>> >>> >>> >> >> ------------------------------------------------------------------------- >> Using Tomcat but need to do more? Need to support web services, security? >> Get stuff done quickly with pre-integrated technology to make your job easier >> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo >> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> >> > > |
From: Bruce F. <bfe...@ba...> - 2006-10-14 22:58:36
|
I'm using the linux tarball Joegen E. Baclor wrote: > Hi Bruce, > > You sure you are using CVS copy? I double checked > oss-application.conf.xml and HTTPPort is set to 9999. Can you verify > this? Also, you shouldn't be getting a login screen if HTTP User is > not yet set. If you suspect corruption in the config, you may delete > the entire registry setting in HKEY_LOCAL_MACHINE/Software/opensipstack.org. > > Joegen > > Bruce Ferrell wrote: > >>Joegen E. Baclor wrote: >> >> >>>Bruce Ferrell wrote: >>> >>> >>> >>>>is there a sample config for opensbc? I looked in cvs and the code is >>>>unclear on what the configuration options might be >>>> >>>> >>>> >>>> >>> >>>Hi Bruce, >>> >>>Nice to see you here. The configuration options for opensbc can be >>>accessed via http on port 9999. This should be http://localhost:9999. >>>The config params goes with a brief description of what they are for as >>>well as sample entries. Just ask if you need further clarification and >>>I would be happy to oblige. >>> >>>Joegen >>> >>> >> >>I find I can connect to localhost:8888 but not 9999. I'm greeted by a >>login page but I have no idea what to put in there to authenticate myself >> >>------------------------------------------------------------------------- >>Using Tomcat but need to do more? Need to support web services, security? >>Get stuff done quickly with pre-integrated technology to make your job easier >>Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo >>http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 >>_______________________________________________ >>opensipstack-devel mailing list >>ope...@li... >>https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> >> > > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > -- One day at a time, one second if that's what it takes |
From: Joegen E. B. <jo...@pl...> - 2006-10-14 21:40:41
|
Hi Bruce, You sure you are using CVS copy? I double checked oss-application.conf.xml and HTTPPort is set to 9999. Can you verify this? Also, you shouldn't be getting a login screen if HTTP User is not yet set. If you suspect corruption in the config, you may delete the entire registry setting in HKEY_LOCAL_MACHINE/Software/opensipstack.org. Joegen Bruce Ferrell wrote: > Joegen E. Baclor wrote: > >> Bruce Ferrell wrote: >> >> >>> is there a sample config for opensbc? I looked in cvs and the code is >>> unclear on what the configuration options might be >>> >>> >>> >>> >> Hi Bruce, >> >> Nice to see you here. The configuration options for opensbc can be >> accessed via http on port 9999. This should be http://localhost:9999. >> The config params goes with a brief description of what they are for as >> well as sample entries. Just ask if you need further clarification and >> I would be happy to oblige. >> >> Joegen >> >> > > I find I can connect to localhost:8888 but not 9999. I'm greeted by a > login page but I have no idea what to put in there to authenticate myself > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > |
From: Bruce F. <bfe...@ba...> - 2006-10-14 20:31:52
|
Joegen E. Baclor wrote: > Bruce Ferrell wrote: > >>is there a sample config for opensbc? I looked in cvs and the code is >>unclear on what the configuration options might be >> >> >> > > Hi Bruce, > > Nice to see you here. The configuration options for opensbc can be > accessed via http on port 9999. This should be http://localhost:9999. > The config params goes with a brief description of what they are for as > well as sample entries. Just ask if you need further clarification and > I would be happy to oblige. > > Joegen > I find I can connect to localhost:8888 but not 9999. I'm greeted by a login page but I have no idea what to put in there to authenticate myself |
From: Joegen E. B. <jo...@pl...> - 2006-10-14 11:28:36
|
Bruce Ferrell wrote: > is there a sample config for opensbc? I looked in cvs and the code is > unclear on what the configuration options might be > > > Hi Bruce, Nice to see you here. The configuration options for opensbc can be accessed via http on port 9999. This should be http://localhost:9999. The config params goes with a brief description of what they are for as well as sample entries. Just ask if you need further clarification and I would be happy to oblige. Joegen |
From: Bruce F. <bfe...@ba...> - 2006-10-13 21:48:11
|
is there a sample config for opensbc? I looked in cvs and the code is unclear on what the configuration options might be -- One day at a time, one second if that's what it takes |
From: Joegen E. B. <jo...@pl...> - 2006-10-13 00:23:21
|
Hi JF, There is no available documentations yet. (Any volunteers?). However, all the configurations needed for opensbc can be accessed via http on port 9999. If you are accessing it in the same machine, it should be in http://localhost:9999. Look for the "Local Domain Accounts" link. That should be the place where you add new SIP accounts so the Registrar would accept the registrations. Examples are provided in the page so its hard to miss the target. Joegen JF wrote: > Thanks. > > Is there any documentation on OpenSBC? > I compiled and ran it but my SIP UA doesn't register because OpenSBC > simply doesn't reply to REGISTER requests... although they appear in > the b2bua-date.log. > > JF > > On 10/12/06, Joegen E. Baclor <jo...@pl...> wrote: > >> Hi JF, >> >> SimpleTest is not anymore part of the opensipstack source tree. You can >> refer to ATLSIP for UA functionality and OpenSBC for >> proxy/registrar/b2bua functionality. >> >> Joegen >> >> JF wrote: >> >>> Hi list, >>> >>> The ReadMe.txt file in opensipstack CVS refers to simpletest, but the >>> 'test' and 'SimpleTest' directories are empty. >>> How can I get these missing files? >>> >>> Thank you, >>> >>> JF >>> >>> ------------------------------------------------------------------------- >>> Using Tomcat but need to do more? Need to support web services, security? >>> Get stuff done quickly with pre-integrated technology to make your job easier >>> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo >>> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 >>> _______________________________________________ >>> opensipstack-devel mailing list >>> ope...@li... >>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>> >>> >>> >> ------------------------------------------------------------------------- >> Using Tomcat but need to do more? Need to support web services, security? >> Get stuff done quickly with pre-integrated technology to make your job easier >> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo >> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> >> > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > |
From: JF <jfk...@gm...> - 2006-10-12 17:23:12
|
Thanks. Is there any documentation on OpenSBC? I compiled and ran it but my SIP UA doesn't register because OpenSBC simply doesn't reply to REGISTER requests... although they appear in the b2bua-date.log. JF On 10/12/06, Joegen E. Baclor <jo...@pl...> wrote: > Hi JF, > > SimpleTest is not anymore part of the opensipstack source tree. You can > refer to ATLSIP for UA functionality and OpenSBC for > proxy/registrar/b2bua functionality. > > Joegen > > JF wrote: > > Hi list, > > > > The ReadMe.txt file in opensipstack CVS refers to simpletest, but the > > 'test' and 'SimpleTest' directories are empty. > > How can I get these missing files? > > > > Thank you, > > > > JF > > > > ------------------------------------------------------------------------- > > Using Tomcat but need to do more? Need to support web services, security? > > Get stuff done quickly with pre-integrated technology to make your job easier > > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > > _______________________________________________ > > opensipstack-devel mailing list > > ope...@li... > > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > > > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > |
From: Joegen E. B. <jo...@pl...> - 2006-10-12 14:41:25
|
Hi JF, SimpleTest is not anymore part of the opensipstack source tree. You can refer to ATLSIP for UA functionality and OpenSBC for proxy/registrar/b2bua functionality. Joegen JF wrote: > Hi list, > > The ReadMe.txt file in opensipstack CVS refers to simpletest, but the > 'test' and 'SimpleTest' directories are empty. > How can I get these missing files? > > Thank you, > > JF > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > |
From: JF <jfk...@gm...> - 2006-10-12 10:12:06
|
Hi list, The ReadMe.txt file in opensipstack CVS refers to simpletest, but the 'test' and 'SimpleTest' directories are empty. How can I get these missing files? Thank you, JF |
From: Joegen E. B. <jo...@pl...> - 2006-10-08 01:52:20
|
Hi, Currently ATLSIP only support single contact for registrations. Although it is relatively easy to modify this behavior and be able to send multiple contacts in a single REGISTER message. You need to overload the following method in opensipstack library to accept multiple users BOOL OpalOSSEndPoint::SendRegister( const PString & userName, const PString & password, const PString & uri, const PString & _domain, BOOL synchronous ) I am currently working on a complete Softphone application that demonstrates in full how to use ATLSIP. It should be out by next week. Joegen bor...@ma... wrote: > I am trying to use ATLSIP in a program which must be able to register > a number of accounts and be able to handle incomming calls for all > those accounts. > Could someone show me how can i do this? > 10xs in advance > ----------------------------- > Участвайте в онлайн анкетата и спечелете >> > >> спортни обувки, екипи за тенис, суичери, спортни сакове и още много > награди > предоставени от италианската марка Lotto и веригата магазини за > спортни стоки "Спорт Депо" ЕООД! > Регистрирайте се още СЕГА: www.sportdepot.bg > <http://mail.bg/ads/adclick.php?bannerid=4870&zoneid=13&source=&dest=http%3A%2F%2Fwww.sportdepot.bg%2F&ismap=> > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > 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 > |
From: <bor...@ma...> - 2006-10-06 12:05:12
|
I am trying to use ATLSIP in a program which must be able to register a number of accounts and be able to handle incomming calls for all those accounts. Could someone show me how can i do this? 10xs in advance</br>-----------------------------</br> <a target=3D'_blank' href=3D"http://mail.bg/ads/adclick.php?bannerid=3D4870&= amp;zoneid=3D13&source=3D&dest=3Dhttp%3A%2F%2Fwww.sportdepot.bg%2F&a= mp;ismap=3D"> =D3=F7=E0=F1=F2=E2=E0=E9=F2=E5 =E2 =EE=ED=EB=E0=E9=ED =E0=ED=EA=E5=F2=E0=F2= =E0 =E8 =F1=EF=E5=F7=E5=EB=E5=F2=E5 >></br> >> =F1=EF=EE=F0=F2=ED=E8 =EE=E1=F3=E2=EA=E8, =E5=EA=E8=EF=E8 =E7=E0 =F2=E5= =ED=E8=F1, =F1=F3=E8=F7=E5=F0=E8, =F1=EF=EE=F0=F2=ED=E8 =F1=E0=EA=EE=E2=E5 = =E8 =EE=F9=E5 =EC=ED=EE=E3=EE =ED=E0=E3=F0=E0=E4=E8</br> =EF=F0=E5=E4=EE=F1=F2=E0=E2=E5=ED=E8 =EE=F2 =E8=F2=E0=EB=E8=E0=ED=F1=EA=E0= =F2=E0 =EC=E0=F0=EA=E0 Lotto =E8 =E2=E5=F0=E8=E3=E0=F2=E0 =EC=E0=E3=E0=E7=E8= =ED=E8 =E7=E0 =F1=EF=EE=F0=F2=ED=E8 =F1=F2=EE=EA=E8 "=D1=EF=EE=F0=F2 =C4=E5= =EF=EE" =C5=CE=CE=C4!</br> =D0=E5=E3=E8=F1=F2=F0=E8=F0=E0=E9=F2=E5 =F1=E5 =EE=F9=E5 =D1=C5=C3=C0: www.= sportdepot.bg</a><div id=3D"beacon_4870" style=3D"position: absolute; left: = 0px; top: 0px; visibility: hidden;"><img src=3D'http://mail.bg/ads/adlog.php= ?bannerid=3D4870&clientid=3D3455&zoneid=3D13&source=3D&block= =3D0&capping=3D0&cb=3D9f4e93e7d960dfe53a84b78c2c094903' width=3D'0' = height=3D'0' alt=3D'' style=3D'width: 0px; height: 0px;'></div> |
From: Joegen E. B. <jo...@pl...> - 2006-10-06 06:25:22
|
Hi Andre, In what context are you using the OnUnregistration callback? I have checked the opensipstack and this callback will be called in upon receipt of a 200 Ok of an un-REGISTER message. Check out the following code: void RegisterSession::OnSuccessful( const SIPMessage & response ) { GCREF( "Auto" ); int interval = m_SessionProfile.RegistrationProfile().GetExpireInterval(); Expires expires; if( response.GetExpires( expires ) ) interval = expires.GetHeaderBody().AsInteger() * 1000; m_ExpireTimer.Stop(); m_ExpireTimer = PTimer( (interval ) ); m_ExpireTimer.SetNotifier( PCREATE_NOTIFIER( SendRegistrationRefresh ) ); m_IsRegistered = TRUE; RegisterSessionManager& manager = (RegisterSessionManager&)m_SessionManager; if( !GetCurrentUACRequest().IsUnregister() ) { LOG_CONTEXT( LogDetail(), m_CallId, "REGISTER: Registration Accepted" ); manager.OnRegistrationAccepted( *this ); }else { LOG_CONTEXT( LogDetail(), m_CallId, "REGISTER: UNREGISTRATION Accepted" ); manager.OnUnregistration( *this ); } } Joegen Andre SIlo wrote: > > The Logout of ATLSIP is not firing event > > > > void MessengerSIPEndPoint::OnUnregistration( > > RegisterSession & session > > ) > > { > > OpalOSSEndPoint::OnUnregistration( session ); > > m_IsRegistered = FALSE; > > m_Manager.m_ATLSIP->Fire_OnLogoutSucessful(); > > } > > > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > 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 > |
From: Andre S. <a_...@pi...> - 2006-10-06 02:45:00
|
The Logout of ATLSIP is not firing event void MessengerSIPEndPoint::OnUnregistration( RegisterSession & session ) { OpalOSSEndPoint::OnUnregistration( session ); m_IsRegistered = FALSE; m_Manager.m_ATLSIP->Fire_OnLogoutSucessful(); } |