opensipstack-devel Mailing List for OpenSIPStack (Page 25)
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: Christian W. <cwa...@gm...> - 2008-05-12 15:23:08
|
Hi Ilian, thanks fort he hint, I have it already done and now I ran into the next problem: If I try to play a file which is in the format g711 alaw by calling pDestStream->WriteData(pData, dwWrite, nRead); the function immediately returns and if I do this without waiting some time before I send the next buffer I hear a short noise then nothing... If I wait the playing is interrupted how can I get it the the playing sounds normal ? Btw: Is it normal that I hear an echo if the medaipatch was created ? If I dont create the path, I only get the source stream but no Destination stream... Kind regards Christian -----Ursprüngliche Nachricht----- Von: ope...@li... [mailto:ope...@li...] Im Auftrag von Ilian Jeri C. Pinzon Gesendet: Montag, 12. Mai 2008 11:19 An: ope...@li... Betreff: Re: [OpenSIPStack] Help using OpenSipStack / Problems answering a SIP call Hi, Since you won't use the PC sound system, the modifications for what you need are not trivial. First, you need to re-enable the following lines in SoftPhone.cxx: AddRouteEntry("pc:.* = sip:<da>"); AddRouteEntry("sip:.* = pc:<da>"); These sets the linkages of the endpoints. In this case, SIP-to-PCsoundsystem and PCsoundsystem-to-SIP. Then you will have to override OpalEndPoint and OpalConnection. You can use OpalPCSSEndpoint and OpalPCSSConnection as reference. But instead of using OpalAudioStream, your classes will need to use a specialized OpalMediaStream that can read from your source and write any incoming data. OpalFileMediaStream will probably suffice if you play and record from files. To get a grasp of how the process works, try setting up break points in OpalPCSSEndpoint, OpalPCSSConnection , and OpalMediaStream. Christian Wallukat wrote: > Hi all, > > > > I need urgent Help, since I didnt get it ... > I attached the SoftPhone files which I have > Modified. For my project I only need to get the > Call and access to the media stream (recording > And playing). > > > > ------------------------------------------------------------------------- This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $100. Use priority code J8TL2D2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javao ne _______________________________________________ opensipstack-devel mailing list ope...@li... https://lists.sourceforge.net/lists/listinfo/opensipstack-devel No virus found in this incoming message. Checked by AVG. Version: 7.5.524 / Virus Database: 269.23.11/1422 - Release Date: 08.05.2008 17:24 No virus found in this outgoing message. Checked by AVG. Version: 7.5.524 / Virus Database: 269.23.11/1422 - Release Date: 08.05.2008 17:24 |
From: Christian W. <cwa...@gm...> - 2008-05-12 10:24:02
|
Hi Ilian, I got it, the problem was that I sent the AnswerCall before the stack has passed all OnIncomingConnection events (I have sent the answercall in OnIncomingConnection which seams to be wrong)... Thanks for your help ! Kind regards Christian -----Ursprüngliche Nachricht----- Von: ope...@li... [mailto:ope...@li...] Im Auftrag von Ilian Jeri C. Pinzon Gesendet: Montag, 12. Mai 2008 11:19 An: ope...@li... Betreff: Re: [OpenSIPStack] Help using OpenSipStack / Problems answering a SIP call Hi, Since you won't use the PC sound system, the modifications for what you need are not trivial. First, you need to re-enable the following lines in SoftPhone.cxx: AddRouteEntry("pc:.* = sip:<da>"); AddRouteEntry("sip:.* = pc:<da>"); These sets the linkages of the endpoints. In this case, SIP-to-PCsoundsystem and PCsoundsystem-to-SIP. Then you will have to override OpalEndPoint and OpalConnection. You can use OpalPCSSEndpoint and OpalPCSSConnection as reference. But instead of using OpalAudioStream, your classes will need to use a specialized OpalMediaStream that can read from your source and write any incoming data. OpalFileMediaStream will probably suffice if you play and record from files. To get a grasp of how the process works, try setting up break points in OpalPCSSEndpoint, OpalPCSSConnection , and OpalMediaStream. Christian Wallukat wrote: > Hi all, > > > > I need urgent Help, since I didnt get it ... > I attached the SoftPhone files which I have > Modified. For my project I only need to get the > Call and access to the media stream (recording > And playing). > > > > ------------------------------------------------------------------------- This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $100. Use priority code J8TL2D2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javao ne _______________________________________________ opensipstack-devel mailing list ope...@li... https://lists.sourceforge.net/lists/listinfo/opensipstack-devel No virus found in this incoming message. Checked by AVG. Version: 7.5.524 / Virus Database: 269.23.11/1422 - Release Date: 08.05.2008 17:24 No virus found in this outgoing message. Checked by AVG. Version: 7.5.524 / Virus Database: 269.23.11/1422 - Release Date: 08.05.2008 17:24 |
From: Ilian J. C. P. <ip...@so...> - 2008-05-12 09:18:53
|
Hi, Since you won't use the PC sound system, the modifications for what you need are not trivial. First, you need to re-enable the following lines in SoftPhone.cxx: AddRouteEntry("pc:.* = sip:<da>"); AddRouteEntry("sip:.* = pc:<da>"); These sets the linkages of the endpoints. In this case, SIP-to-PCsoundsystem and PCsoundsystem-to-SIP. Then you will have to override OpalEndPoint and OpalConnection. You can use OpalPCSSEndpoint and OpalPCSSConnection as reference. But instead of using OpalAudioStream, your classes will need to use a specialized OpalMediaStream that can read from your source and write any incoming data. OpalFileMediaStream will probably suffice if you play and record from files. To get a grasp of how the process works, try setting up break points in OpalPCSSEndpoint, OpalPCSSConnection , and OpalMediaStream. Christian Wallukat wrote: > Hi all, > > > > I need urgent Help, since I didnt get it ... > I attached the SoftPhone files which I have > Modified. For my project I only need to get the > Call and access to the media stream (recording > And playing). > > > > |
From: Albert <agu...@so...> - 2008-05-12 08:28:59
|
Hello Bayu, OpenSBC is confirmed to compile in mac. Please checkout the latest version from CVS. Thanks! Albert Albert wrote: > Hello Bayu, > > opensipstack will compile in mac (tested in mac osx tiger). just > checkout the latest > version from CVS. I will confirm if this is true for OpenSBC as well. > > Thanks! > Albert > > Joegen E. Baclor wrote: > >> I am not the maintainer of the mac port so my answer would be >> unreliable. But as far as my limited knowledge goes, OpenSBC would >> compile in macs. Albert (our mac developer) would be able to give more >> insight on this. Wait for his response >> >> Joegen >> >> bay...@ic... wrote: >> >> >>> Dear Sir / Madam, >>> >>> As We all might be within different parts of earth, My previous email >>> has not been responded instantly. Therefore, I would like to inquire >>> some questions about the opensipstack installation problem. >>> >>> 1. Can we install opensipstack under mac with system detail as seen in >>> the attached "uname -a" file. >>> >>> 2. If mac could support, please give me advice and suggestion on how >>> to install both opensipstack and opensbc properly. (the installation >>> output messages are attached). >>> >>> Thank You very much at advance. >>> >>> Best Regards, >>> >>> Bayu Sukmanto >>> >>> ---------------------------------------------------------------- >>> Indonesia Comnet Plus Webmail >>> >>> ------------------------------------------------------------------------ >>> >>> ------------------------------------------------------------------------- >>> This SF.net email is sponsored by the 2008 JavaOne(SM) Conference >>> Don't miss this year's exciting event. There's still time to save $100. >>> Use priority code J8TL2D2. >>> http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone >>> ------------------------------------------------------------------------ >>> >>> _______________________________________________ >>> opensipstack-devel mailing list >>> ope...@li... >>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>> >>> ------------------------------------------------------------------------ >>> >>> Internal Virus Database is out-of-date. >>> Checked by AVG. >>> Version: 7.5.524 / Virus Database: 269.23.6/1404 - Release Date: 4/29/2008 6:27 PM >>> >>> >>> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by the 2008 JavaOne(SM) Conference >> Don't miss this year's exciting event. There's still time to save $100. >> Use priority code J8TL2D2. >> http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> >> >> > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > |
From: Ilian J. C. P. <ip...@so...> - 2008-05-12 03:01:31
|
Hi, Before calling anything ( probably in your main() ), put a "PSound sound( "dummy-file" );" line. This is just a dummy line to load OPAL's sound plugin. Regards, Ilian Claudio Miceli wrote: > Hi, > > I am using the following code in order to list my audio devices, but it did > not work. Am I doing something wrong or forgetting something? > > Thanks in advance. > > Claudio Miceli de Farias > > PSoundChannel::Directions dir; > PStringArray namesPlay, namesRecord; > cout << "\n"; > cout << "List of play devices\n"; > > dir = PSoundChannel::Player; > namesPlay = PSoundChannel::GetDeviceNames(dir); > > for (PINDEX i = 0; i < namesPlay.GetSize(); i++) > cout << " \"" << namesPlay[i] << "\"\n"; > > cout << "The default play device is \"" << > PSoundChannel::GetDefaultDevice(dir) << "\"\n"; > > cout << "\n"; > cout << "List of Record devices\n"; > > dir = PSoundChannel::Recorder; > namesRecord = PSoundChannel::GetDeviceNames(dir); > for (PINDEX i = 0; i < namesRecord.GetSize(); i++) > cout << " \"" << namesRecord[i] << "\"\n"; > > cout << "The default record device is \"" << > PSoundChannel::GetDefaultDevice(dir) << "\"\n"; > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > |
From: Christian W. <cwa...@gm...> - 2008-05-11 20:33:35
|
Hi all, I need urgent Help, since I didnt get it ... I attached the SoftPhone files which I have Modified. For my project I only need to get the Call and access to the media stream (recording And playing). If I call the Answer function, the call will not be answered since the since the condition never matches: for (PSafePtr<OpalConnection> conn(connectionsActive, PSafeReadOnly); conn != NULL; ++conn) { if (conn != &connection) { if (conn->OpenSourceMediaStream(adjustableMediaFormats, sessionID)) { Thanks for any help Kind regards Christian BTW: Is there more documentation somewhere avail. which describes HOW to use The library ? No virus found in this outgoing message. Checked by AVG. Version: 7.5.524 / Virus Database: 269.23.11/1422 - Release Date: 08.05.2008 17:24 |
From: Claudio M. <cmi...@gm...> - 2008-05-08 18:30:39
|
Hi, I am using the following code in order to list my audio devices, but it did not work. Am I doing something wrong or forgetting something? Thanks in advance. Claudio Miceli de Farias PSoundChannel::Directions dir; PStringArray namesPlay, namesRecord; cout << "\n"; cout << "List of play devices\n"; dir = PSoundChannel::Player; namesPlay = PSoundChannel::GetDeviceNames(dir); for (PINDEX i = 0; i < namesPlay.GetSize(); i++) cout << " \"" << namesPlay[i] << "\"\n"; cout << "The default play device is \"" << PSoundChannel::GetDefaultDevice(dir) << "\"\n"; cout << "\n"; cout << "List of Record devices\n"; dir = PSoundChannel::Recorder; namesRecord = PSoundChannel::GetDeviceNames(dir); for (PINDEX i = 0; i < namesRecord.GetSize(); i++) cout << " \"" << namesRecord[i] << "\"\n"; cout << "The default record device is \"" << PSoundChannel::GetDefaultDevice(dir) << "\"\n"; |
From: Christian W. <cwa...@gm...> - 2008-05-07 12:34:44
|
Hi Joegen, hi all, I will send the traces in the next days, since i can only test at weekends in the moment... I played a little bit around with the OSS Phone application and found out, That if you dont set the sound devices that the app plays the audio On the first device it can found... Maybe I describe what I need: I need to write some library with wich I can create and manage SIP calls. I need to play audio data and do conferencing on the calls for an ISDN to SIP middleware... So the preferred thing would be to get informed over incoming calls and If they will be accepted I need to extract the audio data and send them As DATA_B3_IND via the CAPI. It must also be possible to create Conferences on the SIP-calls and ISDN-Calls (where I have g711 alaw data). I hope you can give me a hint where to start. (CAPI is not the problem, I have it already in the state where I only need To put the SIP part in)... Kind regards Christian -----Ursprüngliche Nachricht----- Von: ope...@li... [mailto:ope...@li...] Im Auftrag von Joegen E. Baclor Gesendet: Dienstag, 6. Mai 2008 10:31 An: ope...@li... Betreff: Re: [OpenSIPStack] Help using OpenSipStack Christian, Would it be possible for you to send an ethereal/wireshark capture of 1. XLite which works 2. OSSPhone which does not work Joegen Christian Wallukat wrote: > Hi Ilian, > > > I tested the lates version from the cvs and got the same behaviour. > But if I remove the stun settings everything works ... > > > > Kind regards > > > Christian > > -----Ursprüngliche Nachricht----- > Von: ope...@li... > [mailto:ope...@li...] Im Auftrag von > Ilian Jeri C. Pinzon > Gesendet: Montag, 5. Mai 2008 06:07 > An: ope...@li... > Betreff: Re: [OpenSIPStack] Help using OpenSipStack > > Hi, > > Christian Wallukat wrote: > >> I try to register at sipgate.de where I have an account. If I do this with >> > > >> XLite it works, if I do it with the OSSPhone it does not work, the >> > registrar > >> Says that I am unauthorized... >> >> > I've committed changes to CVS. Please try it again. > >> Does somebody can help ? >> >> My next question is: >> >> - How to access the MediaStream directly (without setup Mic / Speaker) ? >> >> > Can you elaborate what you need further? Thanks! > > - Ilian > >> Thanx for any help >> >> >> Kind regards Christian >> >> >> This is what Wireshark captured: >> >> >> REGISTER sip:sipgate.de SIP/2.0 >> From: accountname >> <sip:acc...@si...>;tag=04de8dde76fb1810837bc238914e7bc3 >> To: sip:acc...@si... >> Via: SIP/2.0/UDP >> >> > 192.168.0.31:5060;iid=3165;branch=z9hG4bK04de8dde76fb1810837cc238914e7bc3;ua > >> s-addr=217.10.79.9;rport >> CSeq: 1 REGISTER >> Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 >> Contact: "accountname" <sip:accountname@192.168.0.31:5060;transport=udp> >> User-Agent: OpenSIPStack-1.1.7-1 >> Expires: 3600 >> Max-Forwards: 10 >> Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS >> Content-Length: 0 >> >> >> >> REGISTER sip:sipgate.de SIP/2.0 >> From: accountname >> <sip:acc...@si...>;tag=04de8dde76fb1810837bc238914e7bc3 >> To: sip:acc...@si... >> Via: SIP/2.0/UDP >> >> > 192.168.0.31:5060;iid=3165;branch=z9hG4bK04de8dde76fb1810837cc238914e7bc3;ua > >> s-addr=217.10.79.9;rport >> CSeq: 1 REGISTER >> Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 >> Contact: "accountname" <sip:accountname@192.168.0.31:5060;transport=udp> >> User-Agent: OpenSIPStack-1.1.7-1 >> Expires: 3600 >> Max-Forwards: 10 >> Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS >> Content-Length: 0 >> >> >> >> SIP/2.0 401 Unauthorized >> From: accountname >> <sip:acc...@si...>;tag=04de8dde76fb1810837bc238914e7bc3 >> To: sip:acc...@si...;tag=fe1721141f05bd30d4b50c70da3ae228.3552 >> Via: SIP/2.0/UDP >> >> > 192.168.0.31:5060;iid=3165;branch=z9hG4bK04de8dde76fb1810837cc238914e7bc3;ua > >> s-addr=217.10.79.9;rport=55000 >> CSeq: 1 REGISTER >> Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 >> WWW-Authenticate: Digest realm="sipgate.de", >> nonce="481b7bbe7ab18c337e821be64cf19590172c10e3" >> Content-Length: 0 >> >> >> >> SIP/2.0 401 Unauthorized >> From: accountname >> <sip:acc...@si...>;tag=04de8dde76fb1810837bc238914e7bc3 >> To: sip:acc...@si...;tag=fe1721141f05bd30d4b50c70da3ae228.3552 >> Via: SIP/2.0/UDP >> >> > 192.168.0.31:5060;iid=3165;branch=z9hG4bK04de8dde76fb1810837cc238914e7bc3;ua > >> s-addr=217.10.79.9;rport=55000 >> CSeq: 1 REGISTER >> Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 >> WWW-Authenticate: Digest realm="sipgate.de", >> nonce="xxxxxbbe7ab18c337e821be64cf19590172c10e3" >> Content-Length: 0 >> >> >> >> REGISTER sip:sipgate.de SIP/2.0 >> From: accountname >> <sip:acc...@si...>;tag=0d1b8ede76fb1810837cc238914e7bc3 >> To: sip:acc...@si... >> Via: SIP/2.0/UDP >> >> > 192.168.0.31:5060;iid=3165;branch=z9hG4bK0d1b8ede76fb1810837dc238914e7bc3;ua > >> s-addr=217.10.79.9;rport >> CSeq: 2 REGISTER >> Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 >> Contact: "accountname" <sip:accountname@192.168.0.31:5060;transport=udp> >> User-Agent: OpenSIPStack-1.1.7-1 >> Expires: 3600 >> Max-Forwards: 10 >> Authorization: Digest username="accountname", realm="sipgate.de", >> nonce="xxxxxbbe7ab18c337e821be64cf19590172c10e3", uri="sip:sipgate.de", >> response="xxxxxdfc2b913386d3b1c9b3aa5eac48", algorithm=MD5 >> Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS >> Content-Length: 0 >> >> >> >> SIP/2.0 401 Unauthorized >> >> From: accountname >> <sip:acc...@si...>;tag=0d1b8ede76fb1810837cc238914e7bc3 >> To: sip:acc...@si...;tag=fe1721141f05bd30d4b50c70da3ae228.43da >> Via: SIP/2.0/UDP >> >> > 192.168.0.31:5060;iid=3165;branch=z9hG4bK0d1b8ede76fb1810837dc238914e7bc3;ua > >> s-addr=217.10.79.9;rport=55000 >> CSeq: 2 REGISTER >> Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 >> WWW-Authenticate: Digest realm="sipgate.de", >> nonce="xxxxxbbe7ab18c337e821be64cf19590172c10e3" >> Content-Length: 0 >> >> >> REGISTER sip:sipgate.de SIP/2.0 >> From: accountname >> <sip:acc...@si...>;tag=77338ede76fb1810837dc238914e7bc3 >> To: sip:acc...@si... >> Via: SIP/2.0/UDP >> >> > 192.168.0.31:5060;iid=3165;branch=z9hG4bK77338ede76fb1810837ec238914e7bc3;ua > >> s-addr=217.10.79.9;rport >> CSeq: 3 REGISTER >> Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 >> Contact: "accountname" <sip:accountname@192.168.0.31:5060;transport=udp> >> User-Agent: OpenSIPStack-1.1.7-1 >> Expires: 3600 >> Max-Forwards: 10 >> Authorization: Digest username="accountname", realm="sipgate.de", >> nonce="xxxxxbe7ab18c337e821be64cf19590172c10e3", uri="sip:sipgate.de", >> response="xxxxxdfc2b913386d3b1c9b3aa5eac48", algorithm=MD5 >> Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS >> Content-Length: 0 >> >> >> >> SIP/2.0 401 Unauthorized >> >> From: accountname >> <sip:acc...@si...>;tag=77338ede76fb1810837dc238914e7bc3 >> To: sip:acc...@si...;tag=fe1721141f05bd30d4b50c70da3ae228.0eab >> Via: SIP/2.0/UDP >> >> > 192.168.0.31:5060;iid=3165;branch=z9hG4bK77338ede76fb1810837ec238914e7bc3;ua > >> s-addr=217.10.79.9;rport=55000 >> CSeq: 3 REGISTER >> Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 >> WWW-Authenticate: Digest realm="sipgate.de", >> nonce="xxxxxbbe7ab18c337e821be64cf19590172c10e3" >> Content-Length: 0 >> >> >> >> INVITE sip:040...@si... SIP/2.0 >> From: accountname >> <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 >> To: sip:040...@si... >> Via: SIP/2.0/UDP >> >> > 192.168.0.31:5060;iid=3166;branch=z9hG4bK27f498de76fb1810837ec238914e7bc3;ua > >> s-addr=217.10.79.9;rport >> CSeq: 4711 INVITE >> Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 >> Contact: "accountname" <sip:accountname@192.168.0.31:5060> >> User-Agent: OpenSIPStack-1.1.7-1 >> Max-Forwards: 10 >> Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS >> Content-Type: application/sdp >> Content-Length: 227 >> v=0 >> o=- 1209760403 1209760403 IN IP4 192.168.0.31 >> s=OSS RTP Session >> c=IN IP4 192.168.0.31 >> t=0 0 >> m=audio 5000 RTP/AVP 101 0 8 >> a=rtpmap:101 telephone-event/8000 >> a=fmtp:101 0-15 >> a=rtpmap:0 PCMU/8000 >> a=rtpmap:8 PCMA/8000 >> SIP/2.0 407 Proxy Authentication Required >> From: accountname >> <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 >> To: sip:040...@si...;tag=e6312186bd5c2eb4571f6550243cfacc.f474 >> Via: SIP/2.0/UDP >> >> > 192.168.0.31:5060;iid=3166;branch=z9hG4bK27f498de76fb1810837ec238914e7bc3;ua > >> s-addr=217.10.79.9;rport=55000 >> CSeq: 4711 INVITE >> Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 >> Proxy-Authenticate: Digest realm="sipgate.de", >> nonce="xxxxxbc5160e2d230aee75aab387c2e15016a90d" >> Content-Length: 0 >> >> >> >> ACK sip:040...@si... SIP/2.0 >> From: accountname >> <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 >> To: sip:040...@si...;tag=e6312186bd5c2eb4571f6550243cfacc.f474 >> Via: SIP/2.0/UDP >> >> > 192.168.0.31:5060;iid=3166;branch=z9hG4bK27f498de76fb1810837ec238914e7bc3;ua > >> s-addr=217.10.79.9;rport >> CSeq: 4711 ACK >> Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 >> Contact: "accountname" <sip:accountname@192.168.0.31:5060> >> User-Agent: OpenSIPStack-1.1.7-1 >> Max-Forwards: 10 >> Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS >> Content-Length: 0 >> >> >> INVITE sip:040...@si... SIP/2.0 >> From: accountname >> <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 >> To: sip:040...@si... >> Via: SIP/2.0/UDP >> >> > 192.168.0.31:5060;iid=3166;branch=z9hG4bK7f4399de76fb1810837fc238914e7bc3;ua > >> s-addr=217.10.79.9;rport >> CSeq: 4712 INVITE >> Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 >> Contact: "accountname" <sip:accountname@192.168.0.31:5060> >> User-Agent: OpenSIPStack-1.1.7-1 >> Max-Forwards: 10 >> Proxy-Authorization: Digest username="accountname", realm="sipgate.de", >> nonce="xxxxxbc5160e2d230aee75aab387c2e15016a90d", >> uri="sip:040...@si...", >> > response="xxxxx477dd2718a4e4eaf1346b4df4b2", > >> algorithm=MD5 >> Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS >> Content-Type: application/sdp >> Content-Length: 227 >> v=0 >> o=- 1209760403 1209760403 IN IP4 192.168.0.31 >> s=OSS RTP Session >> c=IN IP4 192.168.0.31 >> t=0 0 >> m=audio 5000 RTP/AVP 101 0 8 >> a=rtpmap:101 telephone-event/8000 >> a=fmtp:101 0-15 >> a=rtpmap:0 PCMU/8000 >> a=rtpmap:8 PCMA/8000 >> >> >> SIP/2.0 407 Proxy Authentication Required >> From: accountname >> <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 >> To: sip:040...@si...;tag=e6312186bd5c2eb4571f6550243cfacc.a8c5 >> Via: SIP/2.0/UDP >> >> > 192.168.0.31:5060;iid=3166;branch=z9hG4bK7f4399de76fb1810837fc238914e7bc3;ua > >> s-addr=217.10.79.9;rport=55000 >> CSeq: 4712 INVITE >> Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 >> Proxy-Authenticate: Digest realm="sipgate.de", >> nonce="xxxxxbc5160e2d230aee75aab387c2e15016a90d" >> Content-Length: 0 >> >> >> >> ACK sip:040...@si... SIP/2.0 >> From: accountname >> <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 >> To: sip:040...@si...;tag=e6312186bd5c2eb4571f6550243cfacc.a8c5 >> Via: SIP/2.0/UDP >> >> > 192.168.0.31:5060;iid=3166;branch=z9hG4bK7f4399de76fb1810837fc238914e7bc3;ua > >> s-addr=217.10.79.9;rport >> CSeq: 4712 ACK >> Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 >> Contact: "accountname" <sip:accountname@192.168.0.31:5060> >> User-Agent: OpenSIPStack-1.1.7-1 >> Max-Forwards: 10 >> Proxy-Authorization: Digest username="accountname", realm="sipgate.de", >> nonce="xxxxxc5160e2d230aee75aab387c2e15016a90d", >> uri="sip:040...@si...", >> > response="xxxxx477dd2718a4e4eaf1346b4df4b2", > >> algorithm=MD5 >> Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS >> Content-Length: 0 >> >> >> >> >> >> >> >> No virus found in this outgoing message. >> Checked by AVG. >> Version: 7.5.524 / Virus Database: 269.23.7/1411 - Release Date: >> > 02.05.2008 > >> 08:02 >> >> >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by the 2008 JavaOne(SM) Conference >> Don't miss this year's exciting event. There's still time to save $100. >> Use priority code J8TL2D2. >> >> > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javao > ne > >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> >> >> >> > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javao > ne > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > No virus found in this incoming message. > Checked by AVG. > Version: 7.5.524 / Virus Database: 269.23.7/1411 - Release Date: 02.05.2008 > 08:02 > > > No virus found in this outgoing message. > Checked by AVG. > Version: 7.5.524 / Virus Database: 269.23.7/1411 - Release Date: 02.05.2008 > 08:02 > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javao ne > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > ------------------------------------------------------------------------- This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $100. Use priority code J8TL2D2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javao ne _______________________________________________ opensipstack-devel mailing list ope...@li... https://lists.sourceforge.net/lists/listinfo/opensipstack-devel No virus found in this incoming message. Checked by AVG. Version: 7.5.524 / Virus Database: 269.23.7/1411 - Release Date: 02.05.2008 08:02 No virus found in this outgoing message. Checked by AVG. Version: 7.5.524 / Virus Database: 269.23.7/1411 - Release Date: 02.05.2008 08:02 |
From: Riolym D. <rd...@so...> - 2008-05-07 08:59:11
|
test ope...@op... wrote: > test > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > |
From: Albert <agu...@so...> - 2008-05-07 07:18:34
|
Hello Bayu, opensipstack will compile in mac (tested in mac osx tiger). just checkout the latest version from CVS. I will confirm if this is true for OpenSBC as well. Thanks! Albert Joegen E. Baclor wrote: > I am not the maintainer of the mac port so my answer would be > unreliable. But as far as my limited knowledge goes, OpenSBC would > compile in macs. Albert (our mac developer) would be able to give more > insight on this. Wait for his response > > Joegen > > bay...@ic... wrote: > >> Dear Sir / Madam, >> >> As We all might be within different parts of earth, My previous email >> has not been responded instantly. Therefore, I would like to inquire >> some questions about the opensipstack installation problem. >> >> 1. Can we install opensipstack under mac with system detail as seen in >> the attached "uname -a" file. >> >> 2. If mac could support, please give me advice and suggestion on how >> to install both opensipstack and opensbc properly. (the installation >> output messages are attached). >> >> Thank You very much at advance. >> >> Best Regards, >> >> Bayu Sukmanto >> >> ---------------------------------------------------------------- >> Indonesia Comnet Plus Webmail >> >> ------------------------------------------------------------------------ >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by the 2008 JavaOne(SM) Conference >> Don't miss this year's exciting event. There's still time to save $100. >> Use priority code J8TL2D2. >> http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone >> ------------------------------------------------------------------------ >> >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> >> ------------------------------------------------------------------------ >> >> Internal Virus Database is out-of-date. >> Checked by AVG. >> Version: 7.5.524 / Virus Database: 269.23.6/1404 - Release Date: 4/29/2008 6:27 PM >> >> > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > |
From: <ope...@op...> - 2008-05-07 06:37:37
|
test |
From: <ope...@op...> - 2008-05-07 06:12:18
|
test |
From: Joegen E. B. <joe...@gm...> - 2008-05-07 01:35:18
|
I am not the maintainer of the mac port so my answer would be unreliable. But as far as my limited knowledge goes, OpenSBC would compile in macs. Albert (our mac developer) would be able to give more insight on this. Wait for his response Joegen bay...@ic... wrote: > > Dear Sir / Madam, > > As We all might be within different parts of earth, My previous email > has not been responded instantly. Therefore, I would like to inquire > some questions about the opensipstack installation problem. > > 1. Can we install opensipstack under mac with system detail as seen in > the attached "uname -a" file. > > 2. If mac could support, please give me advice and suggestion on how > to install both opensipstack and opensbc properly. (the installation > output messages are attached). > > Thank You very much at advance. > > Best Regards, > > Bayu Sukmanto > > ---------------------------------------------------------------- > Indonesia Comnet Plus Webmail > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > ------------------------------------------------------------------------ > > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > ------------------------------------------------------------------------ > > Internal Virus Database is out-of-date. > Checked by AVG. > Version: 7.5.524 / Virus Database: 269.23.6/1404 - Release Date: 4/29/2008 6:27 PM > |
From: Joegen E. B. <joe...@gm...> - 2008-05-07 01:32:17
|
Yes this is the correct place. bay...@ic... wrote: > Hello Guys, > > I am Bayu Sukmanto from PT Indonesia Comnets Plus and willing to ask > if I possibly post any kind of question regarding opensipstack and > opensbc ? If yes, then there are some questions about the installation > of both of them. Please kindly confirm my inquiry. Thank You very much > at advance. > > Best Regards, > > Bayu Sukmanto > > ---------------------------------------------------------------- > Indonesia Comnet Plus Webmail > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > |
From: <bay...@ic...> - 2008-05-06 12:14:11
|
Dear Sir / Madam, As We all might be within different parts of earth, My previous email has not been responded instantly. Therefore, I would like to inquire some questions about the opensipstack installation problem. 1. Can we install opensipstack under mac with system detail as seen in the attached "uname -a" file. 2. If mac could support, please give me advice and suggestion on how to install both opensipstack and opensbc properly. (the installation output messages are attached). Thank You very much at advance. Best Regards, Bayu Sukmanto ---------------------------------------------------------------- Indonesia Comnet Plus Webmail |
From: <bay...@ic...> - 2008-05-06 10:35:31
|
Hello Guys, I am Bayu Sukmanto from PT Indonesia Comnets Plus and willing to ask if I possibly post any kind of question regarding opensipstack and opensbc ? If yes, then there are some questions about the installation of both of them. Please kindly confirm my inquiry. Thank You very much at advance. Best Regards, Bayu Sukmanto ---------------------------------------------------------------- Indonesia Comnet Plus Webmail |
From: Joegen E. B. <joe...@gm...> - 2008-05-06 08:30:55
|
Christian, Would it be possible for you to send an ethereal/wireshark capture of 1. XLite which works 2. OSSPhone which does not work Joegen Christian Wallukat wrote: > Hi Ilian, > > > I tested the lates version from the cvs and got the same behaviour. > But if I remove the stun settings everything works ... > > > > Kind regards > > > Christian > > -----Ursprüngliche Nachricht----- > Von: ope...@li... > [mailto:ope...@li...] Im Auftrag von > Ilian Jeri C. Pinzon > Gesendet: Montag, 5. Mai 2008 06:07 > An: ope...@li... > Betreff: Re: [OpenSIPStack] Help using OpenSipStack > > Hi, > > Christian Wallukat wrote: > >> I try to register at sipgate.de where I have an account. If I do this with >> > > >> XLite it works, if I do it with the OSSPhone it does not work, the >> > registrar > >> Says that I am unauthorized... >> >> > I've committed changes to CVS. Please try it again. > >> Does somebody can help ? >> >> My next question is: >> >> - How to access the MediaStream directly (without setup Mic / Speaker) ? >> >> > Can you elaborate what you need further? Thanks! > > - Ilian > >> Thanx for any help >> >> >> Kind regards Christian >> >> >> This is what Wireshark captured: >> >> >> REGISTER sip:sipgate.de SIP/2.0 >> From: accountname >> <sip:acc...@si...>;tag=04de8dde76fb1810837bc238914e7bc3 >> To: sip:acc...@si... >> Via: SIP/2.0/UDP >> >> > 192.168.0.31:5060;iid=3165;branch=z9hG4bK04de8dde76fb1810837cc238914e7bc3;ua > >> s-addr=217.10.79.9;rport >> CSeq: 1 REGISTER >> Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 >> Contact: "accountname" <sip:accountname@192.168.0.31:5060;transport=udp> >> User-Agent: OpenSIPStack-1.1.7-1 >> Expires: 3600 >> Max-Forwards: 10 >> Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS >> Content-Length: 0 >> >> >> >> REGISTER sip:sipgate.de SIP/2.0 >> From: accountname >> <sip:acc...@si...>;tag=04de8dde76fb1810837bc238914e7bc3 >> To: sip:acc...@si... >> Via: SIP/2.0/UDP >> >> > 192.168.0.31:5060;iid=3165;branch=z9hG4bK04de8dde76fb1810837cc238914e7bc3;ua > >> s-addr=217.10.79.9;rport >> CSeq: 1 REGISTER >> Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 >> Contact: "accountname" <sip:accountname@192.168.0.31:5060;transport=udp> >> User-Agent: OpenSIPStack-1.1.7-1 >> Expires: 3600 >> Max-Forwards: 10 >> Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS >> Content-Length: 0 >> >> >> >> SIP/2.0 401 Unauthorized >> From: accountname >> <sip:acc...@si...>;tag=04de8dde76fb1810837bc238914e7bc3 >> To: sip:acc...@si...;tag=fe1721141f05bd30d4b50c70da3ae228.3552 >> Via: SIP/2.0/UDP >> >> > 192.168.0.31:5060;iid=3165;branch=z9hG4bK04de8dde76fb1810837cc238914e7bc3;ua > >> s-addr=217.10.79.9;rport=55000 >> CSeq: 1 REGISTER >> Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 >> WWW-Authenticate: Digest realm="sipgate.de", >> nonce="481b7bbe7ab18c337e821be64cf19590172c10e3" >> Content-Length: 0 >> >> >> >> SIP/2.0 401 Unauthorized >> From: accountname >> <sip:acc...@si...>;tag=04de8dde76fb1810837bc238914e7bc3 >> To: sip:acc...@si...;tag=fe1721141f05bd30d4b50c70da3ae228.3552 >> Via: SIP/2.0/UDP >> >> > 192.168.0.31:5060;iid=3165;branch=z9hG4bK04de8dde76fb1810837cc238914e7bc3;ua > >> s-addr=217.10.79.9;rport=55000 >> CSeq: 1 REGISTER >> Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 >> WWW-Authenticate: Digest realm="sipgate.de", >> nonce="xxxxxbbe7ab18c337e821be64cf19590172c10e3" >> Content-Length: 0 >> >> >> >> REGISTER sip:sipgate.de SIP/2.0 >> From: accountname >> <sip:acc...@si...>;tag=0d1b8ede76fb1810837cc238914e7bc3 >> To: sip:acc...@si... >> Via: SIP/2.0/UDP >> >> > 192.168.0.31:5060;iid=3165;branch=z9hG4bK0d1b8ede76fb1810837dc238914e7bc3;ua > >> s-addr=217.10.79.9;rport >> CSeq: 2 REGISTER >> Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 >> Contact: "accountname" <sip:accountname@192.168.0.31:5060;transport=udp> >> User-Agent: OpenSIPStack-1.1.7-1 >> Expires: 3600 >> Max-Forwards: 10 >> Authorization: Digest username="accountname", realm="sipgate.de", >> nonce="xxxxxbbe7ab18c337e821be64cf19590172c10e3", uri="sip:sipgate.de", >> response="xxxxxdfc2b913386d3b1c9b3aa5eac48", algorithm=MD5 >> Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS >> Content-Length: 0 >> >> >> >> SIP/2.0 401 Unauthorized >> >> From: accountname >> <sip:acc...@si...>;tag=0d1b8ede76fb1810837cc238914e7bc3 >> To: sip:acc...@si...;tag=fe1721141f05bd30d4b50c70da3ae228.43da >> Via: SIP/2.0/UDP >> >> > 192.168.0.31:5060;iid=3165;branch=z9hG4bK0d1b8ede76fb1810837dc238914e7bc3;ua > >> s-addr=217.10.79.9;rport=55000 >> CSeq: 2 REGISTER >> Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 >> WWW-Authenticate: Digest realm="sipgate.de", >> nonce="xxxxxbbe7ab18c337e821be64cf19590172c10e3" >> Content-Length: 0 >> >> >> REGISTER sip:sipgate.de SIP/2.0 >> From: accountname >> <sip:acc...@si...>;tag=77338ede76fb1810837dc238914e7bc3 >> To: sip:acc...@si... >> Via: SIP/2.0/UDP >> >> > 192.168.0.31:5060;iid=3165;branch=z9hG4bK77338ede76fb1810837ec238914e7bc3;ua > >> s-addr=217.10.79.9;rport >> CSeq: 3 REGISTER >> Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 >> Contact: "accountname" <sip:accountname@192.168.0.31:5060;transport=udp> >> User-Agent: OpenSIPStack-1.1.7-1 >> Expires: 3600 >> Max-Forwards: 10 >> Authorization: Digest username="accountname", realm="sipgate.de", >> nonce="xxxxxbe7ab18c337e821be64cf19590172c10e3", uri="sip:sipgate.de", >> response="xxxxxdfc2b913386d3b1c9b3aa5eac48", algorithm=MD5 >> Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS >> Content-Length: 0 >> >> >> >> SIP/2.0 401 Unauthorized >> >> From: accountname >> <sip:acc...@si...>;tag=77338ede76fb1810837dc238914e7bc3 >> To: sip:acc...@si...;tag=fe1721141f05bd30d4b50c70da3ae228.0eab >> Via: SIP/2.0/UDP >> >> > 192.168.0.31:5060;iid=3165;branch=z9hG4bK77338ede76fb1810837ec238914e7bc3;ua > >> s-addr=217.10.79.9;rport=55000 >> CSeq: 3 REGISTER >> Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 >> WWW-Authenticate: Digest realm="sipgate.de", >> nonce="xxxxxbbe7ab18c337e821be64cf19590172c10e3" >> Content-Length: 0 >> >> >> >> INVITE sip:040...@si... SIP/2.0 >> From: accountname >> <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 >> To: sip:040...@si... >> Via: SIP/2.0/UDP >> >> > 192.168.0.31:5060;iid=3166;branch=z9hG4bK27f498de76fb1810837ec238914e7bc3;ua > >> s-addr=217.10.79.9;rport >> CSeq: 4711 INVITE >> Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 >> Contact: "accountname" <sip:accountname@192.168.0.31:5060> >> User-Agent: OpenSIPStack-1.1.7-1 >> Max-Forwards: 10 >> Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS >> Content-Type: application/sdp >> Content-Length: 227 >> v=0 >> o=- 1209760403 1209760403 IN IP4 192.168.0.31 >> s=OSS RTP Session >> c=IN IP4 192.168.0.31 >> t=0 0 >> m=audio 5000 RTP/AVP 101 0 8 >> a=rtpmap:101 telephone-event/8000 >> a=fmtp:101 0-15 >> a=rtpmap:0 PCMU/8000 >> a=rtpmap:8 PCMA/8000 >> SIP/2.0 407 Proxy Authentication Required >> From: accountname >> <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 >> To: sip:040...@si...;tag=e6312186bd5c2eb4571f6550243cfacc.f474 >> Via: SIP/2.0/UDP >> >> > 192.168.0.31:5060;iid=3166;branch=z9hG4bK27f498de76fb1810837ec238914e7bc3;ua > >> s-addr=217.10.79.9;rport=55000 >> CSeq: 4711 INVITE >> Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 >> Proxy-Authenticate: Digest realm="sipgate.de", >> nonce="xxxxxbc5160e2d230aee75aab387c2e15016a90d" >> Content-Length: 0 >> >> >> >> ACK sip:040...@si... SIP/2.0 >> From: accountname >> <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 >> To: sip:040...@si...;tag=e6312186bd5c2eb4571f6550243cfacc.f474 >> Via: SIP/2.0/UDP >> >> > 192.168.0.31:5060;iid=3166;branch=z9hG4bK27f498de76fb1810837ec238914e7bc3;ua > >> s-addr=217.10.79.9;rport >> CSeq: 4711 ACK >> Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 >> Contact: "accountname" <sip:accountname@192.168.0.31:5060> >> User-Agent: OpenSIPStack-1.1.7-1 >> Max-Forwards: 10 >> Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS >> Content-Length: 0 >> >> >> INVITE sip:040...@si... SIP/2.0 >> From: accountname >> <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 >> To: sip:040...@si... >> Via: SIP/2.0/UDP >> >> > 192.168.0.31:5060;iid=3166;branch=z9hG4bK7f4399de76fb1810837fc238914e7bc3;ua > >> s-addr=217.10.79.9;rport >> CSeq: 4712 INVITE >> Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 >> Contact: "accountname" <sip:accountname@192.168.0.31:5060> >> User-Agent: OpenSIPStack-1.1.7-1 >> Max-Forwards: 10 >> Proxy-Authorization: Digest username="accountname", realm="sipgate.de", >> nonce="xxxxxbc5160e2d230aee75aab387c2e15016a90d", >> uri="sip:040...@si...", >> > response="xxxxx477dd2718a4e4eaf1346b4df4b2", > >> algorithm=MD5 >> Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS >> Content-Type: application/sdp >> Content-Length: 227 >> v=0 >> o=- 1209760403 1209760403 IN IP4 192.168.0.31 >> s=OSS RTP Session >> c=IN IP4 192.168.0.31 >> t=0 0 >> m=audio 5000 RTP/AVP 101 0 8 >> a=rtpmap:101 telephone-event/8000 >> a=fmtp:101 0-15 >> a=rtpmap:0 PCMU/8000 >> a=rtpmap:8 PCMA/8000 >> >> >> SIP/2.0 407 Proxy Authentication Required >> From: accountname >> <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 >> To: sip:040...@si...;tag=e6312186bd5c2eb4571f6550243cfacc.a8c5 >> Via: SIP/2.0/UDP >> >> > 192.168.0.31:5060;iid=3166;branch=z9hG4bK7f4399de76fb1810837fc238914e7bc3;ua > >> s-addr=217.10.79.9;rport=55000 >> CSeq: 4712 INVITE >> Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 >> Proxy-Authenticate: Digest realm="sipgate.de", >> nonce="xxxxxbc5160e2d230aee75aab387c2e15016a90d" >> Content-Length: 0 >> >> >> >> ACK sip:040...@si... SIP/2.0 >> From: accountname >> <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 >> To: sip:040...@si...;tag=e6312186bd5c2eb4571f6550243cfacc.a8c5 >> Via: SIP/2.0/UDP >> >> > 192.168.0.31:5060;iid=3166;branch=z9hG4bK7f4399de76fb1810837fc238914e7bc3;ua > >> s-addr=217.10.79.9;rport >> CSeq: 4712 ACK >> Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 >> Contact: "accountname" <sip:accountname@192.168.0.31:5060> >> User-Agent: OpenSIPStack-1.1.7-1 >> Max-Forwards: 10 >> Proxy-Authorization: Digest username="accountname", realm="sipgate.de", >> nonce="xxxxxc5160e2d230aee75aab387c2e15016a90d", >> uri="sip:040...@si...", >> > response="xxxxx477dd2718a4e4eaf1346b4df4b2", > >> algorithm=MD5 >> Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS >> Content-Length: 0 >> >> >> >> >> >> >> >> No virus found in this outgoing message. >> Checked by AVG. >> Version: 7.5.524 / Virus Database: 269.23.7/1411 - Release Date: >> > 02.05.2008 > >> 08:02 >> >> >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by the 2008 JavaOne(SM) Conference >> Don't miss this year's exciting event. There's still time to save $100. >> Use priority code J8TL2D2. >> >> > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javao > ne > >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> >> >> >> > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javao > ne > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > No virus found in this incoming message. > Checked by AVG. > Version: 7.5.524 / Virus Database: 269.23.7/1411 - Release Date: 02.05.2008 > 08:02 > > > No virus found in this outgoing message. > Checked by AVG. > Version: 7.5.524 / Virus Database: 269.23.7/1411 - Release Date: 02.05.2008 > 08:02 > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > |
From: Christian W. <cwa...@gm...> - 2008-05-06 08:10:43
|
Hi Ilian, I tested the lates version from the cvs and got the same behaviour. But if I remove the stun settings everything works ... Kind regards Christian -----Ursprüngliche Nachricht----- Von: ope...@li... [mailto:ope...@li...] Im Auftrag von Ilian Jeri C. Pinzon Gesendet: Montag, 5. Mai 2008 06:07 An: ope...@li... Betreff: Re: [OpenSIPStack] Help using OpenSipStack Hi, Christian Wallukat wrote: > I try to register at sipgate.de where I have an account. If I do this with > XLite it works, if I do it with the OSSPhone it does not work, the registrar > Says that I am unauthorized... > I've committed changes to CVS. Please try it again. > Does somebody can help ? > > My next question is: > > - How to access the MediaStream directly (without setup Mic / Speaker) ? > Can you elaborate what you need further? Thanks! - Ilian > > Thanx for any help > > > Kind regards Christian > > > This is what Wireshark captured: > > > REGISTER sip:sipgate.de SIP/2.0 > From: accountname > <sip:acc...@si...>;tag=04de8dde76fb1810837bc238914e7bc3 > To: sip:acc...@si... > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3165;branch=z9hG4bK04de8dde76fb1810837cc238914e7bc3;ua > s-addr=217.10.79.9;rport > CSeq: 1 REGISTER > Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 > Contact: "accountname" <sip:accountname@192.168.0.31:5060;transport=udp> > User-Agent: OpenSIPStack-1.1.7-1 > Expires: 3600 > Max-Forwards: 10 > Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS > Content-Length: 0 > > > > REGISTER sip:sipgate.de SIP/2.0 > From: accountname > <sip:acc...@si...>;tag=04de8dde76fb1810837bc238914e7bc3 > To: sip:acc...@si... > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3165;branch=z9hG4bK04de8dde76fb1810837cc238914e7bc3;ua > s-addr=217.10.79.9;rport > CSeq: 1 REGISTER > Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 > Contact: "accountname" <sip:accountname@192.168.0.31:5060;transport=udp> > User-Agent: OpenSIPStack-1.1.7-1 > Expires: 3600 > Max-Forwards: 10 > Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS > Content-Length: 0 > > > > SIP/2.0 401 Unauthorized > From: accountname > <sip:acc...@si...>;tag=04de8dde76fb1810837bc238914e7bc3 > To: sip:acc...@si...;tag=fe1721141f05bd30d4b50c70da3ae228.3552 > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3165;branch=z9hG4bK04de8dde76fb1810837cc238914e7bc3;ua > s-addr=217.10.79.9;rport=55000 > CSeq: 1 REGISTER > Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 > WWW-Authenticate: Digest realm="sipgate.de", > nonce="481b7bbe7ab18c337e821be64cf19590172c10e3" > Content-Length: 0 > > > > SIP/2.0 401 Unauthorized > From: accountname > <sip:acc...@si...>;tag=04de8dde76fb1810837bc238914e7bc3 > To: sip:acc...@si...;tag=fe1721141f05bd30d4b50c70da3ae228.3552 > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3165;branch=z9hG4bK04de8dde76fb1810837cc238914e7bc3;ua > s-addr=217.10.79.9;rport=55000 > CSeq: 1 REGISTER > Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 > WWW-Authenticate: Digest realm="sipgate.de", > nonce="xxxxxbbe7ab18c337e821be64cf19590172c10e3" > Content-Length: 0 > > > > REGISTER sip:sipgate.de SIP/2.0 > From: accountname > <sip:acc...@si...>;tag=0d1b8ede76fb1810837cc238914e7bc3 > To: sip:acc...@si... > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3165;branch=z9hG4bK0d1b8ede76fb1810837dc238914e7bc3;ua > s-addr=217.10.79.9;rport > CSeq: 2 REGISTER > Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 > Contact: "accountname" <sip:accountname@192.168.0.31:5060;transport=udp> > User-Agent: OpenSIPStack-1.1.7-1 > Expires: 3600 > Max-Forwards: 10 > Authorization: Digest username="accountname", realm="sipgate.de", > nonce="xxxxxbbe7ab18c337e821be64cf19590172c10e3", uri="sip:sipgate.de", > response="xxxxxdfc2b913386d3b1c9b3aa5eac48", algorithm=MD5 > Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS > Content-Length: 0 > > > > SIP/2.0 401 Unauthorized > > From: accountname > <sip:acc...@si...>;tag=0d1b8ede76fb1810837cc238914e7bc3 > To: sip:acc...@si...;tag=fe1721141f05bd30d4b50c70da3ae228.43da > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3165;branch=z9hG4bK0d1b8ede76fb1810837dc238914e7bc3;ua > s-addr=217.10.79.9;rport=55000 > CSeq: 2 REGISTER > Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 > WWW-Authenticate: Digest realm="sipgate.de", > nonce="xxxxxbbe7ab18c337e821be64cf19590172c10e3" > Content-Length: 0 > > > REGISTER sip:sipgate.de SIP/2.0 > From: accountname > <sip:acc...@si...>;tag=77338ede76fb1810837dc238914e7bc3 > To: sip:acc...@si... > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3165;branch=z9hG4bK77338ede76fb1810837ec238914e7bc3;ua > s-addr=217.10.79.9;rport > CSeq: 3 REGISTER > Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 > Contact: "accountname" <sip:accountname@192.168.0.31:5060;transport=udp> > User-Agent: OpenSIPStack-1.1.7-1 > Expires: 3600 > Max-Forwards: 10 > Authorization: Digest username="accountname", realm="sipgate.de", > nonce="xxxxxbe7ab18c337e821be64cf19590172c10e3", uri="sip:sipgate.de", > response="xxxxxdfc2b913386d3b1c9b3aa5eac48", algorithm=MD5 > Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS > Content-Length: 0 > > > > SIP/2.0 401 Unauthorized > > From: accountname > <sip:acc...@si...>;tag=77338ede76fb1810837dc238914e7bc3 > To: sip:acc...@si...;tag=fe1721141f05bd30d4b50c70da3ae228.0eab > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3165;branch=z9hG4bK77338ede76fb1810837ec238914e7bc3;ua > s-addr=217.10.79.9;rport=55000 > CSeq: 3 REGISTER > Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 > WWW-Authenticate: Digest realm="sipgate.de", > nonce="xxxxxbbe7ab18c337e821be64cf19590172c10e3" > Content-Length: 0 > > > > INVITE sip:040...@si... SIP/2.0 > From: accountname > <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 > To: sip:040...@si... > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3166;branch=z9hG4bK27f498de76fb1810837ec238914e7bc3;ua > s-addr=217.10.79.9;rport > CSeq: 4711 INVITE > Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 > Contact: "accountname" <sip:accountname@192.168.0.31:5060> > User-Agent: OpenSIPStack-1.1.7-1 > Max-Forwards: 10 > Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS > Content-Type: application/sdp > Content-Length: 227 > v=0 > o=- 1209760403 1209760403 IN IP4 192.168.0.31 > s=OSS RTP Session > c=IN IP4 192.168.0.31 > t=0 0 > m=audio 5000 RTP/AVP 101 0 8 > a=rtpmap:101 telephone-event/8000 > a=fmtp:101 0-15 > a=rtpmap:0 PCMU/8000 > a=rtpmap:8 PCMA/8000 > SIP/2.0 407 Proxy Authentication Required > From: accountname > <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 > To: sip:040...@si...;tag=e6312186bd5c2eb4571f6550243cfacc.f474 > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3166;branch=z9hG4bK27f498de76fb1810837ec238914e7bc3;ua > s-addr=217.10.79.9;rport=55000 > CSeq: 4711 INVITE > Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 > Proxy-Authenticate: Digest realm="sipgate.de", > nonce="xxxxxbc5160e2d230aee75aab387c2e15016a90d" > Content-Length: 0 > > > > ACK sip:040...@si... SIP/2.0 > From: accountname > <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 > To: sip:040...@si...;tag=e6312186bd5c2eb4571f6550243cfacc.f474 > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3166;branch=z9hG4bK27f498de76fb1810837ec238914e7bc3;ua > s-addr=217.10.79.9;rport > CSeq: 4711 ACK > Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 > Contact: "accountname" <sip:accountname@192.168.0.31:5060> > User-Agent: OpenSIPStack-1.1.7-1 > Max-Forwards: 10 > Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS > Content-Length: 0 > > > INVITE sip:040...@si... SIP/2.0 > From: accountname > <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 > To: sip:040...@si... > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3166;branch=z9hG4bK7f4399de76fb1810837fc238914e7bc3;ua > s-addr=217.10.79.9;rport > CSeq: 4712 INVITE > Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 > Contact: "accountname" <sip:accountname@192.168.0.31:5060> > User-Agent: OpenSIPStack-1.1.7-1 > Max-Forwards: 10 > Proxy-Authorization: Digest username="accountname", realm="sipgate.de", > nonce="xxxxxbc5160e2d230aee75aab387c2e15016a90d", > uri="sip:040...@si...", response="xxxxx477dd2718a4e4eaf1346b4df4b2", > algorithm=MD5 > Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS > Content-Type: application/sdp > Content-Length: 227 > v=0 > o=- 1209760403 1209760403 IN IP4 192.168.0.31 > s=OSS RTP Session > c=IN IP4 192.168.0.31 > t=0 0 > m=audio 5000 RTP/AVP 101 0 8 > a=rtpmap:101 telephone-event/8000 > a=fmtp:101 0-15 > a=rtpmap:0 PCMU/8000 > a=rtpmap:8 PCMA/8000 > > > SIP/2.0 407 Proxy Authentication Required > From: accountname > <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 > To: sip:040...@si...;tag=e6312186bd5c2eb4571f6550243cfacc.a8c5 > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3166;branch=z9hG4bK7f4399de76fb1810837fc238914e7bc3;ua > s-addr=217.10.79.9;rport=55000 > CSeq: 4712 INVITE > Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 > Proxy-Authenticate: Digest realm="sipgate.de", > nonce="xxxxxbc5160e2d230aee75aab387c2e15016a90d" > Content-Length: 0 > > > > ACK sip:040...@si... SIP/2.0 > From: accountname > <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 > To: sip:040...@si...;tag=e6312186bd5c2eb4571f6550243cfacc.a8c5 > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3166;branch=z9hG4bK7f4399de76fb1810837fc238914e7bc3;ua > s-addr=217.10.79.9;rport > CSeq: 4712 ACK > Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 > Contact: "accountname" <sip:accountname@192.168.0.31:5060> > User-Agent: OpenSIPStack-1.1.7-1 > Max-Forwards: 10 > Proxy-Authorization: Digest username="accountname", realm="sipgate.de", > nonce="xxxxxc5160e2d230aee75aab387c2e15016a90d", > uri="sip:040...@si...", response="xxxxx477dd2718a4e4eaf1346b4df4b2", > algorithm=MD5 > Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS > Content-Length: 0 > > > > > > > > No virus found in this outgoing message. > Checked by AVG. > Version: 7.5.524 / Virus Database: 269.23.7/1411 - Release Date: 02.05.2008 > 08:02 > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javao ne > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > ------------------------------------------------------------------------- This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $100. Use priority code J8TL2D2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javao ne _______________________________________________ opensipstack-devel mailing list ope...@li... https://lists.sourceforge.net/lists/listinfo/opensipstack-devel No virus found in this incoming message. Checked by AVG. Version: 7.5.524 / Virus Database: 269.23.7/1411 - Release Date: 02.05.2008 08:02 No virus found in this outgoing message. Checked by AVG. Version: 7.5.524 / Virus Database: 269.23.7/1411 - Release Date: 02.05.2008 08:02 |
From: Albert <agu...@so...> - 2008-05-06 04:30:38
|
Still working on it. :-) Thanks! Albert brad zdanivsky wrote: > Any word on xcode version being available? happy to test and help on > this.. be a cool iphone spp. > > brad > > Albert wrote: > >> We are very interested in your efforts. As of now, there are no xcode >> project files available >> for opensipstack. I will also be doing the same thing. Your >> contributions are always welcome :-) >> >> Thanks! >> >> Albert >> >> brad zdanivsky wrote: >> >>> sweet.. please tell me more, I need xcode too. >>> >>> scott, I'll contribute back qas I'm doing the same thing. >>> >>> Brad >>> >>> ope...@op... wrote: >>> >>> >>>> Yep, I just did it. I'm in the process of building an OpenSIPStack framework with an Objective-C interface, and I just succesfully compiled the whole thing in Xcode. There were a few build errors that needed to be fixed, and the code generates about 60000 warnings that need to be cleaned up. >>>> >>>> I'm really new to this community, so I have no idea if the authors of this package have any interest in what I'm doing. >>>> >>>> Scott >>>> >>>> ------------------------------------------------------------------------- >>>> This SF.net email is sponsored by the 2008 JavaOne(SM) Conference >>>> Don't miss this year's exciting event. There's still time to save $100. >>>> Use priority code J8TL2D2. >>>> http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone >>>> _______________________________________________ >>>> opensipstack-devel mailing list >>>> ope...@li... >>>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>>> >>>> >>>> >>> ------------------------------------------------------------------------- >>> This SF.net email is sponsored by the 2008 JavaOne(SM) Conference >>> Don't miss this year's exciting event. There's still time to save $100. >>> Use priority code J8TL2D2. >>> http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone >>> _______________________________________________ >>> opensipstack-devel mailing list >>> ope...@li... >>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>> >>> >>> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by the 2008 JavaOne(SM) Conference >> Don't miss this year's exciting event. There's still time to save $100. >> Use priority code J8TL2D2. >> http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> >> > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > |
From: Christian W. <cwa...@gm...> - 2008-05-05 09:36:27
|
Hi Ilian, thanks for your response ! I need to get calls and create calls for an ivr project. If I get an incoming call I need to be able to record and play on the call. The single call will never have a mic or a speaker. I installed asterisk 1.4.19 on my dev system yesterday and tried it again, the difference I see was that in the INVITE which was send to sipgate no SDP Packet was sent, on Asterisk the stack does... I will checkout the latest version from SVN and let you know what happens. If I can do something for you, please let me know. Kind regards Christian -----Ursprüngliche Nachricht----- Von: ope...@li... [mailto:ope...@li...] Im Auftrag von Ilian Jeri C. Pinzon Gesendet: Montag, 5. Mai 2008 06:07 An: ope...@li... Betreff: Re: [OpenSIPStack] Help using OpenSipStack Hi, Christian Wallukat wrote: > I try to register at sipgate.de where I have an account. If I do this with > XLite it works, if I do it with the OSSPhone it does not work, the registrar > Says that I am unauthorized... > I've committed changes to CVS. Please try it again. > Does somebody can help ? > > My next question is: > > - How to access the MediaStream directly (without setup Mic / Speaker) ? > Can you elaborate what you need further? Thanks! - Ilian > > Thanx for any help > > > Kind regards Christian > > > This is what Wireshark captured: > > > REGISTER sip:sipgate.de SIP/2.0 > From: accountname > <sip:acc...@si...>;tag=04de8dde76fb1810837bc238914e7bc3 > To: sip:acc...@si... > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3165;branch=z9hG4bK04de8dde76fb1810837cc238914e7bc3;ua > s-addr=217.10.79.9;rport > CSeq: 1 REGISTER > Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 > Contact: "accountname" <sip:accountname@192.168.0.31:5060;transport=udp> > User-Agent: OpenSIPStack-1.1.7-1 > Expires: 3600 > Max-Forwards: 10 > Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS > Content-Length: 0 > > > > REGISTER sip:sipgate.de SIP/2.0 > From: accountname > <sip:acc...@si...>;tag=04de8dde76fb1810837bc238914e7bc3 > To: sip:acc...@si... > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3165;branch=z9hG4bK04de8dde76fb1810837cc238914e7bc3;ua > s-addr=217.10.79.9;rport > CSeq: 1 REGISTER > Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 > Contact: "accountname" <sip:accountname@192.168.0.31:5060;transport=udp> > User-Agent: OpenSIPStack-1.1.7-1 > Expires: 3600 > Max-Forwards: 10 > Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS > Content-Length: 0 > > > > SIP/2.0 401 Unauthorized > From: accountname > <sip:acc...@si...>;tag=04de8dde76fb1810837bc238914e7bc3 > To: sip:acc...@si...;tag=fe1721141f05bd30d4b50c70da3ae228.3552 > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3165;branch=z9hG4bK04de8dde76fb1810837cc238914e7bc3;ua > s-addr=217.10.79.9;rport=55000 > CSeq: 1 REGISTER > Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 > WWW-Authenticate: Digest realm="sipgate.de", > nonce="481b7bbe7ab18c337e821be64cf19590172c10e3" > Content-Length: 0 > > > > SIP/2.0 401 Unauthorized > From: accountname > <sip:acc...@si...>;tag=04de8dde76fb1810837bc238914e7bc3 > To: sip:acc...@si...;tag=fe1721141f05bd30d4b50c70da3ae228.3552 > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3165;branch=z9hG4bK04de8dde76fb1810837cc238914e7bc3;ua > s-addr=217.10.79.9;rport=55000 > CSeq: 1 REGISTER > Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 > WWW-Authenticate: Digest realm="sipgate.de", > nonce="xxxxxbbe7ab18c337e821be64cf19590172c10e3" > Content-Length: 0 > > > > REGISTER sip:sipgate.de SIP/2.0 > From: accountname > <sip:acc...@si...>;tag=0d1b8ede76fb1810837cc238914e7bc3 > To: sip:acc...@si... > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3165;branch=z9hG4bK0d1b8ede76fb1810837dc238914e7bc3;ua > s-addr=217.10.79.9;rport > CSeq: 2 REGISTER > Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 > Contact: "accountname" <sip:accountname@192.168.0.31:5060;transport=udp> > User-Agent: OpenSIPStack-1.1.7-1 > Expires: 3600 > Max-Forwards: 10 > Authorization: Digest username="accountname", realm="sipgate.de", > nonce="xxxxxbbe7ab18c337e821be64cf19590172c10e3", uri="sip:sipgate.de", > response="xxxxxdfc2b913386d3b1c9b3aa5eac48", algorithm=MD5 > Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS > Content-Length: 0 > > > > SIP/2.0 401 Unauthorized > > From: accountname > <sip:acc...@si...>;tag=0d1b8ede76fb1810837cc238914e7bc3 > To: sip:acc...@si...;tag=fe1721141f05bd30d4b50c70da3ae228.43da > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3165;branch=z9hG4bK0d1b8ede76fb1810837dc238914e7bc3;ua > s-addr=217.10.79.9;rport=55000 > CSeq: 2 REGISTER > Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 > WWW-Authenticate: Digest realm="sipgate.de", > nonce="xxxxxbbe7ab18c337e821be64cf19590172c10e3" > Content-Length: 0 > > > REGISTER sip:sipgate.de SIP/2.0 > From: accountname > <sip:acc...@si...>;tag=77338ede76fb1810837dc238914e7bc3 > To: sip:acc...@si... > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3165;branch=z9hG4bK77338ede76fb1810837ec238914e7bc3;ua > s-addr=217.10.79.9;rport > CSeq: 3 REGISTER > Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 > Contact: "accountname" <sip:accountname@192.168.0.31:5060;transport=udp> > User-Agent: OpenSIPStack-1.1.7-1 > Expires: 3600 > Max-Forwards: 10 > Authorization: Digest username="accountname", realm="sipgate.de", > nonce="xxxxxbe7ab18c337e821be64cf19590172c10e3", uri="sip:sipgate.de", > response="xxxxxdfc2b913386d3b1c9b3aa5eac48", algorithm=MD5 > Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS > Content-Length: 0 > > > > SIP/2.0 401 Unauthorized > > From: accountname > <sip:acc...@si...>;tag=77338ede76fb1810837dc238914e7bc3 > To: sip:acc...@si...;tag=fe1721141f05bd30d4b50c70da3ae228.0eab > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3165;branch=z9hG4bK77338ede76fb1810837ec238914e7bc3;ua > s-addr=217.10.79.9;rport=55000 > CSeq: 3 REGISTER > Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 > WWW-Authenticate: Digest realm="sipgate.de", > nonce="xxxxxbbe7ab18c337e821be64cf19590172c10e3" > Content-Length: 0 > > > > INVITE sip:040...@si... SIP/2.0 > From: accountname > <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 > To: sip:040...@si... > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3166;branch=z9hG4bK27f498de76fb1810837ec238914e7bc3;ua > s-addr=217.10.79.9;rport > CSeq: 4711 INVITE > Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 > Contact: "accountname" <sip:accountname@192.168.0.31:5060> > User-Agent: OpenSIPStack-1.1.7-1 > Max-Forwards: 10 > Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS > Content-Type: application/sdp > Content-Length: 227 > v=0 > o=- 1209760403 1209760403 IN IP4 192.168.0.31 > s=OSS RTP Session > c=IN IP4 192.168.0.31 > t=0 0 > m=audio 5000 RTP/AVP 101 0 8 > a=rtpmap:101 telephone-event/8000 > a=fmtp:101 0-15 > a=rtpmap:0 PCMU/8000 > a=rtpmap:8 PCMA/8000 > SIP/2.0 407 Proxy Authentication Required > From: accountname > <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 > To: sip:040...@si...;tag=e6312186bd5c2eb4571f6550243cfacc.f474 > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3166;branch=z9hG4bK27f498de76fb1810837ec238914e7bc3;ua > s-addr=217.10.79.9;rport=55000 > CSeq: 4711 INVITE > Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 > Proxy-Authenticate: Digest realm="sipgate.de", > nonce="xxxxxbc5160e2d230aee75aab387c2e15016a90d" > Content-Length: 0 > > > > ACK sip:040...@si... SIP/2.0 > From: accountname > <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 > To: sip:040...@si...;tag=e6312186bd5c2eb4571f6550243cfacc.f474 > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3166;branch=z9hG4bK27f498de76fb1810837ec238914e7bc3;ua > s-addr=217.10.79.9;rport > CSeq: 4711 ACK > Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 > Contact: "accountname" <sip:accountname@192.168.0.31:5060> > User-Agent: OpenSIPStack-1.1.7-1 > Max-Forwards: 10 > Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS > Content-Length: 0 > > > INVITE sip:040...@si... SIP/2.0 > From: accountname > <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 > To: sip:040...@si... > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3166;branch=z9hG4bK7f4399de76fb1810837fc238914e7bc3;ua > s-addr=217.10.79.9;rport > CSeq: 4712 INVITE > Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 > Contact: "accountname" <sip:accountname@192.168.0.31:5060> > User-Agent: OpenSIPStack-1.1.7-1 > Max-Forwards: 10 > Proxy-Authorization: Digest username="accountname", realm="sipgate.de", > nonce="xxxxxbc5160e2d230aee75aab387c2e15016a90d", > uri="sip:040...@si...", response="xxxxx477dd2718a4e4eaf1346b4df4b2", > algorithm=MD5 > Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS > Content-Type: application/sdp > Content-Length: 227 > v=0 > o=- 1209760403 1209760403 IN IP4 192.168.0.31 > s=OSS RTP Session > c=IN IP4 192.168.0.31 > t=0 0 > m=audio 5000 RTP/AVP 101 0 8 > a=rtpmap:101 telephone-event/8000 > a=fmtp:101 0-15 > a=rtpmap:0 PCMU/8000 > a=rtpmap:8 PCMA/8000 > > > SIP/2.0 407 Proxy Authentication Required > From: accountname > <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 > To: sip:040...@si...;tag=e6312186bd5c2eb4571f6550243cfacc.a8c5 > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3166;branch=z9hG4bK7f4399de76fb1810837fc238914e7bc3;ua > s-addr=217.10.79.9;rport=55000 > CSeq: 4712 INVITE > Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 > Proxy-Authenticate: Digest realm="sipgate.de", > nonce="xxxxxbc5160e2d230aee75aab387c2e15016a90d" > Content-Length: 0 > > > > ACK sip:040...@si... SIP/2.0 > From: accountname > <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 > To: sip:040...@si...;tag=e6312186bd5c2eb4571f6550243cfacc.a8c5 > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3166;branch=z9hG4bK7f4399de76fb1810837fc238914e7bc3;ua > s-addr=217.10.79.9;rport > CSeq: 4712 ACK > Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 > Contact: "accountname" <sip:accountname@192.168.0.31:5060> > User-Agent: OpenSIPStack-1.1.7-1 > Max-Forwards: 10 > Proxy-Authorization: Digest username="accountname", realm="sipgate.de", > nonce="xxxxxc5160e2d230aee75aab387c2e15016a90d", > uri="sip:040...@si...", response="xxxxx477dd2718a4e4eaf1346b4df4b2", > algorithm=MD5 > Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS > Content-Length: 0 > > > > > > > > No virus found in this outgoing message. > Checked by AVG. > Version: 7.5.524 / Virus Database: 269.23.7/1411 - Release Date: 02.05.2008 > 08:02 > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javao ne > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > ------------------------------------------------------------------------- This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $100. Use priority code J8TL2D2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javao ne _______________________________________________ opensipstack-devel mailing list ope...@li... https://lists.sourceforge.net/lists/listinfo/opensipstack-devel No virus found in this incoming message. Checked by AVG. Version: 7.5.524 / Virus Database: 269.23.7/1411 - Release Date: 02.05.2008 08:02 No virus found in this outgoing message. Checked by AVG. Version: 7.5.524 / Virus Database: 269.23.7/1411 - Release Date: 02.05.2008 08:02 |
From: Ilian J. C. P. <ip...@so...> - 2008-05-05 04:06:54
|
Hi, Christian Wallukat wrote: > I try to register at sipgate.de where I have an account. If I do this with > XLite it works, if I do it with the OSSPhone it does not work, the registrar > Says that I am unauthorized... > I've committed changes to CVS. Please try it again. > Does somebody can help ? > > My next question is: > > - How to access the MediaStream directly (without setup Mic / Speaker) ? > Can you elaborate what you need further? Thanks! - Ilian > > Thanx for any help > > > Kind regards Christian > > > This is what Wireshark captured: > > > REGISTER sip:sipgate.de SIP/2.0 > From: accountname > <sip:acc...@si...>;tag=04de8dde76fb1810837bc238914e7bc3 > To: sip:acc...@si... > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3165;branch=z9hG4bK04de8dde76fb1810837cc238914e7bc3;ua > s-addr=217.10.79.9;rport > CSeq: 1 REGISTER > Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 > Contact: "accountname" <sip:accountname@192.168.0.31:5060;transport=udp> > User-Agent: OpenSIPStack-1.1.7-1 > Expires: 3600 > Max-Forwards: 10 > Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS > Content-Length: 0 > > > > REGISTER sip:sipgate.de SIP/2.0 > From: accountname > <sip:acc...@si...>;tag=04de8dde76fb1810837bc238914e7bc3 > To: sip:acc...@si... > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3165;branch=z9hG4bK04de8dde76fb1810837cc238914e7bc3;ua > s-addr=217.10.79.9;rport > CSeq: 1 REGISTER > Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 > Contact: "accountname" <sip:accountname@192.168.0.31:5060;transport=udp> > User-Agent: OpenSIPStack-1.1.7-1 > Expires: 3600 > Max-Forwards: 10 > Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS > Content-Length: 0 > > > > SIP/2.0 401 Unauthorized > From: accountname > <sip:acc...@si...>;tag=04de8dde76fb1810837bc238914e7bc3 > To: sip:acc...@si...;tag=fe1721141f05bd30d4b50c70da3ae228.3552 > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3165;branch=z9hG4bK04de8dde76fb1810837cc238914e7bc3;ua > s-addr=217.10.79.9;rport=55000 > CSeq: 1 REGISTER > Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 > WWW-Authenticate: Digest realm="sipgate.de", > nonce="481b7bbe7ab18c337e821be64cf19590172c10e3" > Content-Length: 0 > > > > SIP/2.0 401 Unauthorized > From: accountname > <sip:acc...@si...>;tag=04de8dde76fb1810837bc238914e7bc3 > To: sip:acc...@si...;tag=fe1721141f05bd30d4b50c70da3ae228.3552 > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3165;branch=z9hG4bK04de8dde76fb1810837cc238914e7bc3;ua > s-addr=217.10.79.9;rport=55000 > CSeq: 1 REGISTER > Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 > WWW-Authenticate: Digest realm="sipgate.de", > nonce="xxxxxbbe7ab18c337e821be64cf19590172c10e3" > Content-Length: 0 > > > > REGISTER sip:sipgate.de SIP/2.0 > From: accountname > <sip:acc...@si...>;tag=0d1b8ede76fb1810837cc238914e7bc3 > To: sip:acc...@si... > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3165;branch=z9hG4bK0d1b8ede76fb1810837dc238914e7bc3;ua > s-addr=217.10.79.9;rport > CSeq: 2 REGISTER > Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 > Contact: "accountname" <sip:accountname@192.168.0.31:5060;transport=udp> > User-Agent: OpenSIPStack-1.1.7-1 > Expires: 3600 > Max-Forwards: 10 > Authorization: Digest username="accountname", realm="sipgate.de", > nonce="xxxxxbbe7ab18c337e821be64cf19590172c10e3", uri="sip:sipgate.de", > response="xxxxxdfc2b913386d3b1c9b3aa5eac48", algorithm=MD5 > Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS > Content-Length: 0 > > > > SIP/2.0 401 Unauthorized > > From: accountname > <sip:acc...@si...>;tag=0d1b8ede76fb1810837cc238914e7bc3 > To: sip:acc...@si...;tag=fe1721141f05bd30d4b50c70da3ae228.43da > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3165;branch=z9hG4bK0d1b8ede76fb1810837dc238914e7bc3;ua > s-addr=217.10.79.9;rport=55000 > CSeq: 2 REGISTER > Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 > WWW-Authenticate: Digest realm="sipgate.de", > nonce="xxxxxbbe7ab18c337e821be64cf19590172c10e3" > Content-Length: 0 > > > REGISTER sip:sipgate.de SIP/2.0 > From: accountname > <sip:acc...@si...>;tag=77338ede76fb1810837dc238914e7bc3 > To: sip:acc...@si... > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3165;branch=z9hG4bK77338ede76fb1810837ec238914e7bc3;ua > s-addr=217.10.79.9;rport > CSeq: 3 REGISTER > Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 > Contact: "accountname" <sip:accountname@192.168.0.31:5060;transport=udp> > User-Agent: OpenSIPStack-1.1.7-1 > Expires: 3600 > Max-Forwards: 10 > Authorization: Digest username="accountname", realm="sipgate.de", > nonce="xxxxxbe7ab18c337e821be64cf19590172c10e3", uri="sip:sipgate.de", > response="xxxxxdfc2b913386d3b1c9b3aa5eac48", algorithm=MD5 > Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS > Content-Length: 0 > > > > SIP/2.0 401 Unauthorized > > From: accountname > <sip:acc...@si...>;tag=77338ede76fb1810837dc238914e7bc3 > To: sip:acc...@si...;tag=fe1721141f05bd30d4b50c70da3ae228.0eab > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3165;branch=z9hG4bK77338ede76fb1810837ec238914e7bc3;ua > s-addr=217.10.79.9;rport=55000 > CSeq: 3 REGISTER > Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 > WWW-Authenticate: Digest realm="sipgate.de", > nonce="xxxxxbbe7ab18c337e821be64cf19590172c10e3" > Content-Length: 0 > > > > INVITE sip:040...@si... SIP/2.0 > From: accountname > <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 > To: sip:040...@si... > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3166;branch=z9hG4bK27f498de76fb1810837ec238914e7bc3;ua > s-addr=217.10.79.9;rport > CSeq: 4711 INVITE > Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 > Contact: "accountname" <sip:accountname@192.168.0.31:5060> > User-Agent: OpenSIPStack-1.1.7-1 > Max-Forwards: 10 > Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS > Content-Type: application/sdp > Content-Length: 227 > v=0 > o=- 1209760403 1209760403 IN IP4 192.168.0.31 > s=OSS RTP Session > c=IN IP4 192.168.0.31 > t=0 0 > m=audio 5000 RTP/AVP 101 0 8 > a=rtpmap:101 telephone-event/8000 > a=fmtp:101 0-15 > a=rtpmap:0 PCMU/8000 > a=rtpmap:8 PCMA/8000 > SIP/2.0 407 Proxy Authentication Required > From: accountname > <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 > To: sip:040...@si...;tag=e6312186bd5c2eb4571f6550243cfacc.f474 > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3166;branch=z9hG4bK27f498de76fb1810837ec238914e7bc3;ua > s-addr=217.10.79.9;rport=55000 > CSeq: 4711 INVITE > Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 > Proxy-Authenticate: Digest realm="sipgate.de", > nonce="xxxxxbc5160e2d230aee75aab387c2e15016a90d" > Content-Length: 0 > > > > ACK sip:040...@si... SIP/2.0 > From: accountname > <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 > To: sip:040...@si...;tag=e6312186bd5c2eb4571f6550243cfacc.f474 > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3166;branch=z9hG4bK27f498de76fb1810837ec238914e7bc3;ua > s-addr=217.10.79.9;rport > CSeq: 4711 ACK > Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 > Contact: "accountname" <sip:accountname@192.168.0.31:5060> > User-Agent: OpenSIPStack-1.1.7-1 > Max-Forwards: 10 > Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS > Content-Length: 0 > > > INVITE sip:040...@si... SIP/2.0 > From: accountname > <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 > To: sip:040...@si... > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3166;branch=z9hG4bK7f4399de76fb1810837fc238914e7bc3;ua > s-addr=217.10.79.9;rport > CSeq: 4712 INVITE > Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 > Contact: "accountname" <sip:accountname@192.168.0.31:5060> > User-Agent: OpenSIPStack-1.1.7-1 > Max-Forwards: 10 > Proxy-Authorization: Digest username="accountname", realm="sipgate.de", > nonce="xxxxxbc5160e2d230aee75aab387c2e15016a90d", > uri="sip:040...@si...", response="xxxxx477dd2718a4e4eaf1346b4df4b2", > algorithm=MD5 > Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS > Content-Type: application/sdp > Content-Length: 227 > v=0 > o=- 1209760403 1209760403 IN IP4 192.168.0.31 > s=OSS RTP Session > c=IN IP4 192.168.0.31 > t=0 0 > m=audio 5000 RTP/AVP 101 0 8 > a=rtpmap:101 telephone-event/8000 > a=fmtp:101 0-15 > a=rtpmap:0 PCMU/8000 > a=rtpmap:8 PCMA/8000 > > > SIP/2.0 407 Proxy Authentication Required > From: accountname > <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 > To: sip:040...@si...;tag=e6312186bd5c2eb4571f6550243cfacc.a8c5 > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3166;branch=z9hG4bK7f4399de76fb1810837fc238914e7bc3;ua > s-addr=217.10.79.9;rport=55000 > CSeq: 4712 INVITE > Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 > Proxy-Authenticate: Digest realm="sipgate.de", > nonce="xxxxxbc5160e2d230aee75aab387c2e15016a90d" > Content-Length: 0 > > > > ACK sip:040...@si... SIP/2.0 > From: accountname > <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 > To: sip:040...@si...;tag=e6312186bd5c2eb4571f6550243cfacc.a8c5 > Via: SIP/2.0/UDP > 192.168.0.31:5060;iid=3166;branch=z9hG4bK7f4399de76fb1810837fc238914e7bc3;ua > s-addr=217.10.79.9;rport > CSeq: 4712 ACK > Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 > Contact: "accountname" <sip:accountname@192.168.0.31:5060> > User-Agent: OpenSIPStack-1.1.7-1 > Max-Forwards: 10 > Proxy-Authorization: Digest username="accountname", realm="sipgate.de", > nonce="xxxxxc5160e2d230aee75aab387c2e15016a90d", > uri="sip:040...@si...", response="xxxxx477dd2718a4e4eaf1346b4df4b2", > algorithm=MD5 > Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS > Content-Length: 0 > > > > > > > > No virus found in this outgoing message. > Checked by AVG. > Version: 7.5.524 / Virus Database: 269.23.7/1411 - Release Date: 02.05.2008 > 08:02 > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > |
From: Christian W. <cwa...@gm...> - 2008-05-03 00:40:51
|
Hi all, I just downloaded and compiled the Stack and the ATLSIP and the OSSPhone sample application. I try to register at sipgate.de where I have an account. If I do this with XLite it works, if I do it with the OSSPhone it does not work, the registrar Says that I am unauthorized... Does somebody can help ? My next question is: - How to access the MediaStream directly (without setup Mic / Speaker) ? Thanx for any help Kind regards Christian This is what Wireshark captured: REGISTER sip:sipgate.de SIP/2.0 From: accountname <sip:acc...@si...>;tag=04de8dde76fb1810837bc238914e7bc3 To: sip:acc...@si... Via: SIP/2.0/UDP 192.168.0.31:5060;iid=3165;branch=z9hG4bK04de8dde76fb1810837cc238914e7bc3;ua s-addr=217.10.79.9;rport CSeq: 1 REGISTER Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 Contact: "accountname" <sip:accountname@192.168.0.31:5060;transport=udp> User-Agent: OpenSIPStack-1.1.7-1 Expires: 3600 Max-Forwards: 10 Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS Content-Length: 0 REGISTER sip:sipgate.de SIP/2.0 From: accountname <sip:acc...@si...>;tag=04de8dde76fb1810837bc238914e7bc3 To: sip:acc...@si... Via: SIP/2.0/UDP 192.168.0.31:5060;iid=3165;branch=z9hG4bK04de8dde76fb1810837cc238914e7bc3;ua s-addr=217.10.79.9;rport CSeq: 1 REGISTER Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 Contact: "accountname" <sip:accountname@192.168.0.31:5060;transport=udp> User-Agent: OpenSIPStack-1.1.7-1 Expires: 3600 Max-Forwards: 10 Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS Content-Length: 0 SIP/2.0 401 Unauthorized From: accountname <sip:acc...@si...>;tag=04de8dde76fb1810837bc238914e7bc3 To: sip:acc...@si...;tag=fe1721141f05bd30d4b50c70da3ae228.3552 Via: SIP/2.0/UDP 192.168.0.31:5060;iid=3165;branch=z9hG4bK04de8dde76fb1810837cc238914e7bc3;ua s-addr=217.10.79.9;rport=55000 CSeq: 1 REGISTER Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 WWW-Authenticate: Digest realm="sipgate.de", nonce="481b7bbe7ab18c337e821be64cf19590172c10e3" Content-Length: 0 SIP/2.0 401 Unauthorized From: accountname <sip:acc...@si...>;tag=04de8dde76fb1810837bc238914e7bc3 To: sip:acc...@si...;tag=fe1721141f05bd30d4b50c70da3ae228.3552 Via: SIP/2.0/UDP 192.168.0.31:5060;iid=3165;branch=z9hG4bK04de8dde76fb1810837cc238914e7bc3;ua s-addr=217.10.79.9;rport=55000 CSeq: 1 REGISTER Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 WWW-Authenticate: Digest realm="sipgate.de", nonce="xxxxxbbe7ab18c337e821be64cf19590172c10e3" Content-Length: 0 REGISTER sip:sipgate.de SIP/2.0 From: accountname <sip:acc...@si...>;tag=0d1b8ede76fb1810837cc238914e7bc3 To: sip:acc...@si... Via: SIP/2.0/UDP 192.168.0.31:5060;iid=3165;branch=z9hG4bK0d1b8ede76fb1810837dc238914e7bc3;ua s-addr=217.10.79.9;rport CSeq: 2 REGISTER Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 Contact: "accountname" <sip:accountname@192.168.0.31:5060;transport=udp> User-Agent: OpenSIPStack-1.1.7-1 Expires: 3600 Max-Forwards: 10 Authorization: Digest username="accountname", realm="sipgate.de", nonce="xxxxxbbe7ab18c337e821be64cf19590172c10e3", uri="sip:sipgate.de", response="xxxxxdfc2b913386d3b1c9b3aa5eac48", algorithm=MD5 Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS Content-Length: 0 SIP/2.0 401 Unauthorized From: accountname <sip:acc...@si...>;tag=0d1b8ede76fb1810837cc238914e7bc3 To: sip:acc...@si...;tag=fe1721141f05bd30d4b50c70da3ae228.43da Via: SIP/2.0/UDP 192.168.0.31:5060;iid=3165;branch=z9hG4bK0d1b8ede76fb1810837dc238914e7bc3;ua s-addr=217.10.79.9;rport=55000 CSeq: 2 REGISTER Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 WWW-Authenticate: Digest realm="sipgate.de", nonce="xxxxxbbe7ab18c337e821be64cf19590172c10e3" Content-Length: 0 REGISTER sip:sipgate.de SIP/2.0 From: accountname <sip:acc...@si...>;tag=77338ede76fb1810837dc238914e7bc3 To: sip:acc...@si... Via: SIP/2.0/UDP 192.168.0.31:5060;iid=3165;branch=z9hG4bK77338ede76fb1810837ec238914e7bc3;ua s-addr=217.10.79.9;rport CSeq: 3 REGISTER Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 Contact: "accountname" <sip:accountname@192.168.0.31:5060;transport=udp> User-Agent: OpenSIPStack-1.1.7-1 Expires: 3600 Max-Forwards: 10 Authorization: Digest username="accountname", realm="sipgate.de", nonce="xxxxxbe7ab18c337e821be64cf19590172c10e3", uri="sip:sipgate.de", response="xxxxxdfc2b913386d3b1c9b3aa5eac48", algorithm=MD5 Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS Content-Length: 0 SIP/2.0 401 Unauthorized From: accountname <sip:acc...@si...>;tag=77338ede76fb1810837dc238914e7bc3 To: sip:acc...@si...;tag=fe1721141f05bd30d4b50c70da3ae228.0eab Via: SIP/2.0/UDP 192.168.0.31:5060;iid=3165;branch=z9hG4bK77338ede76fb1810837ec238914e7bc3;ua s-addr=217.10.79.9;rport=55000 CSeq: 3 REGISTER Call-ID: 04de8dde-76fb-1810-9844-c238914e7bc3 WWW-Authenticate: Digest realm="sipgate.de", nonce="xxxxxbbe7ab18c337e821be64cf19590172c10e3" Content-Length: 0 INVITE sip:040...@si... SIP/2.0 From: accountname <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 To: sip:040...@si... Via: SIP/2.0/UDP 192.168.0.31:5060;iid=3166;branch=z9hG4bK27f498de76fb1810837ec238914e7bc3;ua s-addr=217.10.79.9;rport CSeq: 4711 INVITE Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 Contact: "accountname" <sip:accountname@192.168.0.31:5060> User-Agent: OpenSIPStack-1.1.7-1 Max-Forwards: 10 Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS Content-Type: application/sdp Content-Length: 227 v=0 o=- 1209760403 1209760403 IN IP4 192.168.0.31 s=OSS RTP Session c=IN IP4 192.168.0.31 t=0 0 m=audio 5000 RTP/AVP 101 0 8 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-15 a=rtpmap:0 PCMU/8000 a=rtpmap:8 PCMA/8000 SIP/2.0 407 Proxy Authentication Required From: accountname <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 To: sip:040...@si...;tag=e6312186bd5c2eb4571f6550243cfacc.f474 Via: SIP/2.0/UDP 192.168.0.31:5060;iid=3166;branch=z9hG4bK27f498de76fb1810837ec238914e7bc3;ua s-addr=217.10.79.9;rport=55000 CSeq: 4711 INVITE Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 Proxy-Authenticate: Digest realm="sipgate.de", nonce="xxxxxbc5160e2d230aee75aab387c2e15016a90d" Content-Length: 0 ACK sip:040...@si... SIP/2.0 From: accountname <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 To: sip:040...@si...;tag=e6312186bd5c2eb4571f6550243cfacc.f474 Via: SIP/2.0/UDP 192.168.0.31:5060;iid=3166;branch=z9hG4bK27f498de76fb1810837ec238914e7bc3;ua s-addr=217.10.79.9;rport CSeq: 4711 ACK Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 Contact: "accountname" <sip:accountname@192.168.0.31:5060> User-Agent: OpenSIPStack-1.1.7-1 Max-Forwards: 10 Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS Content-Length: 0 INVITE sip:040...@si... SIP/2.0 From: accountname <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 To: sip:040...@si... Via: SIP/2.0/UDP 192.168.0.31:5060;iid=3166;branch=z9hG4bK7f4399de76fb1810837fc238914e7bc3;ua s-addr=217.10.79.9;rport CSeq: 4712 INVITE Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 Contact: "accountname" <sip:accountname@192.168.0.31:5060> User-Agent: OpenSIPStack-1.1.7-1 Max-Forwards: 10 Proxy-Authorization: Digest username="accountname", realm="sipgate.de", nonce="xxxxxbc5160e2d230aee75aab387c2e15016a90d", uri="sip:040...@si...", response="xxxxx477dd2718a4e4eaf1346b4df4b2", algorithm=MD5 Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS Content-Type: application/sdp Content-Length: 227 v=0 o=- 1209760403 1209760403 IN IP4 192.168.0.31 s=OSS RTP Session c=IN IP4 192.168.0.31 t=0 0 m=audio 5000 RTP/AVP 101 0 8 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-15 a=rtpmap:0 PCMU/8000 a=rtpmap:8 PCMA/8000 SIP/2.0 407 Proxy Authentication Required From: accountname <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 To: sip:040...@si...;tag=e6312186bd5c2eb4571f6550243cfacc.a8c5 Via: SIP/2.0/UDP 192.168.0.31:5060;iid=3166;branch=z9hG4bK7f4399de76fb1810837fc238914e7bc3;ua s-addr=217.10.79.9;rport=55000 CSeq: 4712 INVITE Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 Proxy-Authenticate: Digest realm="sipgate.de", nonce="xxxxxbc5160e2d230aee75aab387c2e15016a90d" Content-Length: 0 ACK sip:040...@si... SIP/2.0 From: accountname <sip:acc...@si...>;tag=27f498de76fb1810837fc238914e7bc3 To: sip:040...@si...;tag=e6312186bd5c2eb4571f6550243cfacc.a8c5 Via: SIP/2.0/UDP 192.168.0.31:5060;iid=3166;branch=z9hG4bK7f4399de76fb1810837fc238914e7bc3;ua s-addr=217.10.79.9;rport CSeq: 4712 ACK Call-ID: 0cee98de-76fb-1810-9845-c238914e7bc3 Contact: "accountname" <sip:accountname@192.168.0.31:5060> User-Agent: OpenSIPStack-1.1.7-1 Max-Forwards: 10 Proxy-Authorization: Digest username="accountname", realm="sipgate.de", nonce="xxxxxc5160e2d230aee75aab387c2e15016a90d", uri="sip:040...@si...", response="xxxxx477dd2718a4e4eaf1346b4df4b2", algorithm=MD5 Allow: INVITE, BYE, ACK, REFER, MESSAGE, INFO, NOTIFY, OPTIONS Content-Length: 0 No virus found in this outgoing message. Checked by AVG. Version: 7.5.524 / Virus Database: 269.23.7/1411 - Release Date: 02.05.2008 08:02 |
From: brad z. <ver...@in...> - 2008-05-01 03:58:35
|
Any word on xcode version being available? happy to test and help on this.. be a cool iphone spp. brad Albert wrote: > We are very interested in your efforts. As of now, there are no xcode > project files available > for opensipstack. I will also be doing the same thing. Your > contributions are always welcome :-) > > Thanks! > > Albert > > brad zdanivsky wrote: >> sweet.. please tell me more, I need xcode too. >> >> scott, I'll contribute back qas I'm doing the same thing. >> >> Brad >> >> ope...@op... wrote: >> >>> Yep, I just did it. I'm in the process of building an OpenSIPStack framework with an Objective-C interface, and I just succesfully compiled the whole thing in Xcode. There were a few build errors that needed to be fixed, and the code generates about 60000 warnings that need to be cleaned up. >>> >>> I'm really new to this community, so I have no idea if the authors of this package have any interest in what I'm doing. >>> >>> Scott >>> >>> ------------------------------------------------------------------------- >>> This SF.net email is sponsored by the 2008 JavaOne(SM) Conference >>> Don't miss this year's exciting event. There's still time to save $100. >>> Use priority code J8TL2D2. >>> http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone >>> _______________________________________________ >>> opensipstack-devel mailing list >>> ope...@li... >>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>> >>> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by the 2008 JavaOne(SM) Conference >> Don't miss this year's exciting event. There's still time to save $100. >> Use priority code J8TL2D2. >> http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> >> > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > |
From: <jo...@op...> - 2008-04-30 07:06:09
|
It's not a guarantee but there is a big chance it can fool the filters that it's a none SIP/RTP packet. Unless of course they crack your XOR algorithm in which case you just need to either change the key or find another pattern. Or you could wait until all the foreign investors get out of UAE because they can't make a simple phone call! When that day comes, maybe they would stop this filtering policy. Joegen Manoj Kumar Joshi wrote: > Actually i spent too much time with SIPXtapi (Integrated external voie > handling) etc. > > -----Original Message----- > From: ope...@li... > [mailto:ope...@li...]On Behalf Of > Manoj Kumar Joshi > Sent: Tuesday, April 29, 2008 4:17 PM > To: 'Ilian Jeri C. Pinzon' > Cc: ope...@li... > Subject: Re: [OpenSIPStack] atlSIP control Problem > > > Ok.. > > Jeri....If i implement XOR in some other SIP Phone (SDK) ....and use with > OpenSBC...will it work in the countries where SIP is blocked? (Like UAE) > > Manoj > > -----Original Message----- > From: Ilian Jeri C. Pinzon [mailto:ip...@so...] > Sent: Tuesday, April 29, 2008 5:11 PM > To: ma...@as... > Cc: ope...@li...; > ope...@op... > Subject: Re: [OpenSIPStack] atlSIP control Problem > > > Hi. Can you post the call stack when it crashes? > > I am not well-versed in VB but my best guess is that you should marshal > your DoLogin() to another thread. DoLogin() signals another event which > will call one of your event handlers that probably has a MsgBox(..). > Calling MsgBox while the UI thread is currently blocked (because of > CommandClick) is probably fatal. > > - Ilian > > Manoj Kumar Joshi wrote: > >> Ok.. >> >> 1- I included Atlsip control from Project-->Components >> 2- Placed it on form and given name as a. >> 3- Set following properties at design time... >> - Account Name = 2464454521517 >> - Authentication user = 2464454521517 >> - Authentication Password = 1234 >> - Proxy Authentication Password = 1234 >> - Proxy Authentication User = 2464454521517 >> - SIP Server address =208.115.97.10 >> - XORHASH = 1 >> (Apart from the Sound cards are set properly too) >> 4- Following is the code ... >> Form Load >> ********* >> a.InitializeSIP >> a.RequireRegistration = 1 >> a.RegistrarTTL = 20 >> >> Command1Click >> ************** >> a.DoLogin >> >> Private Sub OpenSIPStackCtl1_OnLoginError(ByVal errorCode As Long, ByVal >> errorDesc As String) >> MsgBox ("Error: " + errorDesc) >> End Sub >> >> Private Sub OpenSIPStackCtl1_OnLoginSuccessful() >> MsgBox ("Success") >> End Sub >> >> Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer) >> a.DoLogout >> 'Set a = Nothing >> End Sub >> >> At server I am running openSBC with XOR. One thing i do not understand is >> that at client i see no setting to specify XOR key >> >> Regards, >> >> Manoj >> >> -----Original Message----- >> From: Ilian Jeri C. Pinzon [mailto:ip...@so...] >> Sent: Tuesday, April 29, 2008 3:14 PM >> To: ma...@as...; ope...@li... >> Cc: ope...@op... >> Subject: Re: [OpenSIPStack] atlSIP control Problem >> >> >> Hi. >> >> Please send more information about your problem with the appropriate >> details. Like, how are you handling the Register error? Does the crash >> happen from within ATLSIP? Etc. We can't help you if we have no clue to >> what's going on in your setup. >> >> Thanks! >> >> - Ilian >> >> Manoj Kumar Joshi wrote: >> >> >>> Hello Guys, >>> >>> When i use AtlSIP with visual basic, it takes a lot of time to load and >>> >>> >> send >> >> >>> register request. Also it crashes when there is Register error. >>> >>> Any suggestions? >>> >>> Regards, >>> >>> Manoj >>> >>> >>> ------------------------------------------------------------------------- >>> This SF.net email is sponsored by the 2008 JavaOne(SM) Conference >>> Don't miss this year's exciting event. There's still time to save $100. >>> Use priority code J8TL2D2. >>> >>> >>> > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javao > >> ne >> >> >>> _______________________________________________ >>> opensipstack-devel mailing list >>> ope...@li... >>> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >>> >>> >>> >>> >>> >> >> -- >> Internal Virus Database is out-of-date. >> Checked by AVG. >> Version: 7.5.519 / Virus Database: 269.23.0 - Release Date: 4/15/2008 >> > 12:00 > >> AM >> >> >> >> >> >> > > > > -- > Internal Virus Database is out-of-date. > Checked by AVG. > Version: 7.5.519 / Virus Database: 269.23.0 - Release Date: 4/15/2008 12:00 > AM > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javao > ne > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > -- > Internal Virus Database is out-of-date. > Checked by AVG. > Version: 7.5.519 / Virus Database: 269.23.0 - Release Date: 4/15/2008 12:00 > AM > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > opensipstack-devel mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensipstack-devel > > > > |
From: Manoj K. J. <ma...@as...> - 2008-04-29 12:02:24
|
Actually i spent too much time with SIPXtapi (Integrated external voie handling) etc. -----Original Message----- From: ope...@li... [mailto:ope...@li...]On Behalf Of Manoj Kumar Joshi Sent: Tuesday, April 29, 2008 4:17 PM To: 'Ilian Jeri C. Pinzon' Cc: ope...@li... Subject: Re: [OpenSIPStack] atlSIP control Problem Ok.. Jeri....If i implement XOR in some other SIP Phone (SDK) ....and use with OpenSBC...will it work in the countries where SIP is blocked? (Like UAE) Manoj -----Original Message----- From: Ilian Jeri C. Pinzon [mailto:ip...@so...] Sent: Tuesday, April 29, 2008 5:11 PM To: ma...@as... Cc: ope...@li...; ope...@op... Subject: Re: [OpenSIPStack] atlSIP control Problem Hi. Can you post the call stack when it crashes? I am not well-versed in VB but my best guess is that you should marshal your DoLogin() to another thread. DoLogin() signals another event which will call one of your event handlers that probably has a MsgBox(..). Calling MsgBox while the UI thread is currently blocked (because of CommandClick) is probably fatal. - Ilian Manoj Kumar Joshi wrote: > Ok.. > > 1- I included Atlsip control from Project-->Components > 2- Placed it on form and given name as a. > 3- Set following properties at design time... > - Account Name = 2464454521517 > - Authentication user = 2464454521517 > - Authentication Password = 1234 > - Proxy Authentication Password = 1234 > - Proxy Authentication User = 2464454521517 > - SIP Server address =208.115.97.10 > - XORHASH = 1 > (Apart from the Sound cards are set properly too) > 4- Following is the code ... > Form Load > ********* > a.InitializeSIP > a.RequireRegistration = 1 > a.RegistrarTTL = 20 > > Command1Click > ************** > a.DoLogin > > Private Sub OpenSIPStackCtl1_OnLoginError(ByVal errorCode As Long, ByVal > errorDesc As String) > MsgBox ("Error: " + errorDesc) > End Sub > > Private Sub OpenSIPStackCtl1_OnLoginSuccessful() > MsgBox ("Success") > End Sub > > Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer) > a.DoLogout > 'Set a = Nothing > End Sub > > At server I am running openSBC with XOR. One thing i do not understand is > that at client i see no setting to specify XOR key > > Regards, > > Manoj > > -----Original Message----- > From: Ilian Jeri C. Pinzon [mailto:ip...@so...] > Sent: Tuesday, April 29, 2008 3:14 PM > To: ma...@as...; ope...@li... > Cc: ope...@op... > Subject: Re: [OpenSIPStack] atlSIP control Problem > > > Hi. > > Please send more information about your problem with the appropriate > details. Like, how are you handling the Register error? Does the crash > happen from within ATLSIP? Etc. We can't help you if we have no clue to > what's going on in your setup. > > Thanks! > > - Ilian > > Manoj Kumar Joshi wrote: > >> Hello Guys, >> >> When i use AtlSIP with visual basic, it takes a lot of time to load and >> > send > >> register request. Also it crashes when there is Register error. >> >> Any suggestions? >> >> Regards, >> >> Manoj >> >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by the 2008 JavaOne(SM) Conference >> Don't miss this year's exciting event. There's still time to save $100. >> Use priority code J8TL2D2. >> >> > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javao > ne > >> _______________________________________________ >> opensipstack-devel mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/opensipstack-devel >> >> >> >> > > > > -- > Internal Virus Database is out-of-date. > Checked by AVG. > Version: 7.5.519 / Virus Database: 269.23.0 - Release Date: 4/15/2008 12:00 > AM > > > > > -- Internal Virus Database is out-of-date. Checked by AVG. Version: 7.5.519 / Virus Database: 269.23.0 - Release Date: 4/15/2008 12:00 AM ------------------------------------------------------------------------- This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $100. Use priority code J8TL2D2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javao ne _______________________________________________ opensipstack-devel mailing list ope...@li... https://lists.sourceforge.net/lists/listinfo/opensipstack-devel -- Internal Virus Database is out-of-date. Checked by AVG. Version: 7.5.519 / Virus Database: 269.23.0 - Release Date: 4/15/2008 12:00 AM |