Click here to Skip to main content
Email Password   helpLost your password?
Screenshot - proxy.jpg

SIP Overview

SIP is an application-layer control protocol that can establish, modify, and terminate multimedia sessions (conferences) such as Internet telephony calls. SIP can also invite participants to already existing sessions, such as multicast conferences. Normally SIP uses UDP and TCP port 5060 and TCP 5061 for SSL communication. SIP protocol is very similar to HTTP, so if you have some knowledge about HTTP, then it is easy to learn SIP. SIP doesn't transfer session data like audio, video. RTP(real time protocol) is used for that, SIP just helps to open RTP streams.

SIP Message Example

INVITE sip:john@domain.com SIP/2.0
From: <sip:doe@domain.com>;tag=2084442460
To: <sip:john@1domain.com>
Via: SIP/2.0/UDP domain.com:5060;branch=z9hG4bK2df7b9194cd51e25
Call-ID: john@domain.com-4524j
CSeq: 1 INVITE
Contact: <sip:doe@domain.com:5060>
Content-Length: 226
Content-Type: application/sdp

<session description data, like RTP description>

SIP Server Types

stateless SIP server doesn't store any transaction info.
statefull SIP server creates and holds SIP commands transaction state.
registrar/location Allows users to register their locations and later to use that info to forward calls to registered contact.
B2BUA SIP server is like statefull + holds active calls state.(This is needed if call billing or full control of call is needed)
presence Provides user availability services, like if user is online,offline, ... .
... There are some more, but not so important ones.

Basic SIP Commands

Ok, some ABC done, there are many documents on the internet, so it is not a good idea to rewrite these there.

If want more advanced information, then see:

SIP Proxy Demo Overview

This SIP proxy example just implements fully functional simple stateless, statefull, b2bua proxy. You can use hardware SIP phones or soft phones to play with this proxy.This is an advanced example, code is well commented, so beginners don't hate me because no more text here. Just read RFC 3216, see information links I noted earlier. After you go through those, if you then look at the code, it is all nicer then.

Some free available softphones are:

Version:
    11.06.2007
        *) Added B2BUA support.
    07.04.2007 
        *) Many bug fixes. 
        *) SIP -> PSTN and PSTN -> SIP gateway support. 
        *) Non-SIP URI gateway support. 

Contact Details

You must Sign In to use this message board.
 
 
Per page   
 FirstPrevNext
GeneralSample is not working properly.,.
sajithkalady
1:40 19 Mar '10  
Am not able to run the server. The log showing below given error :



Received (489 bytes): 192.168.1.43:5060 <- 192.168.1.43:3363
REGISTER sip:192.168.1.43 SIP/2.0
Via: SIP/2.0/UDP 192.168.1.43:16504
Max-Forwards: 70
From: <sip:1000@192.168.1.43>;tag=4630f16796754b3e83ab97138f51bcf5;epid=c43c95ac07
To: <sip:1000@192.168.1.43>
Call-ID: c15644c8b2634b08999b8553a44f71a4@192.168.1.43
CSeq: 1 REGISTER
Contact: <sip:192.168.1.43:16504>;methods="INVITE, MESSAGE, INFO, SUBSCRIBE, OPTIONS, BYE, CANCEL, NOTIFY, ACK, REFER"
User-Agent: RTC/1.2.4949
Event: registration
Allow-Events: presence
Content-Length: 0




Invalid request: Via: header field branch parameter is missing !

Sending (363 bytes): 192.168.1.43:5060 -> 192.168.1.43:16504
<begin>
SIP/2.0 400 Bad Request. Via: header field branch parameter is missing !
Via: SIP/2.0/UDP 192.168.1.43:16504
From: <sip:1000@192.168.1.43>;tag=4630f16796754b3e83ab97138f51bcf5;epid=c43c95ac07
To: <sip:1000@192.168.1.43>
Call-ID: c15644c8b2634b08999b8553a44f71a4@192.168.1.43
CSeq: 1 REGISTER
Allow: INVITE,ACK,OPTIONS,CANCEL,BYE,PRACK
Content-Length: 0

<end>


Received (489 bytes): 192.168.1.43:5060 <- 192.168.1.43:3363
REGISTER sip:192.168.1.43 SIP/2.0
Via: SIP/2.0/UDP 192.168.1.43:16504
Max-Forwards: 70
From: <sip:1000@192.168.1.43>;tag=4630f16796754b3e83ab97138f51bcf5;epid=c43c95ac07
To: <sip:1000@192.168.1.43>
Call-ID: c15644c8b2634b08999b8553a44f71a4@192.168.1.43
CSeq: 2 REGISTER
Contact: <sip:192.168.1.43:16504>;methods="INVITE, MESSAGE, INFO, SUBSCRIBE, OPTIONS, BYE, CANCEL, NOTIFY, ACK, REFER"
User-Agent: RTC/1.2.4949
Event: registration
Allow-Events: presence
Content-Length: 0




Invalid request: Via: header field branch parameter is missing !

Sending (363 bytes): 192.168.1.43:5060 -> 192.168.1.43:16504
<begin>
SIP/2.0 400 Bad Request. Via: header field branch parameter is missing !
Via: SIP/2.0/UDP 192.168.1.43:16504
From: <sip:1000@192.168.1.43>;tag=4630f16796754b3e83ab97138f51bcf5;epid=c43c95ac07
To: <sip:1000@192.168.1.43>
Call-ID: c15644c8b2634b08999b8553a44f71a4@192.168.1.43
CSeq: 2 REGISTER
Allow: INVITE,ACK,OPTIONS,CANCEL,BYE,PRACK
Content-Length: 0

<end>
Generalthanks from PH
mdingalla
21:09 18 Oct '09  
thanks Ivar. would you consider moving your code base to Codeplex or Sourceforge? great Code. especially on SIP. Thanks! You are the ONE.
GeneralGeneral comment
mapick
7:36 3 Oct '09  
Hi,
I downloaded code last month and I quickly adapted it to use in my ASP.NET web server,
and it immediately works without problems!

Then I started "play" with code and I found it incredibly valuable and complete,
if you are patient, in this pack you can find a solid base for all your communication needs!

I'm a "normal" developer, to tell I use c# as straight as possible, so initially I found all very complex,
but now I must admit it improved a lot my knowledge and programming skills!

Thanks Ivar Big Grin
GeneralSIP Client
binnibinni
3:53 2 Oct '09  
Hi,
I have your sip client which is having audio support..is there update on your sip client? i mean is there any support for video thing?? can u plz gv me the link from where i can download that..?

Thanks in advance...
GeneralRe: SIP Client
Ivar Lumi
4:00 2 Oct '09  
Hi,

No there is no video support ... .
GeneralRe: SIP Client
binnibinni
4:04 2 Oct '09  
ok..thanks for your quick reply..
can u suggest me how to implement video in sip client? how to send invite and all??
QuestionUDP to TCP UA
rudacunhasilva
7:34 24 Aug '09  
I'm using the example SIP UA.
I'm trying to modify to use TCP in mensagems SIP instead of UDP.

How can I do this?
QuestionSIP TCP
rudacunhasilva
15:48 20 Aug '09  
I'm trying to create a proxy via TCP instead of UDP, but it's wrong, i send!
QuestionSIP_Gateway
rudacunhasilva
11:15 18 Aug '09  
Hello,
When the forecast is the SIP_Gateway version implemented?
AnswerRe: SIP_Gateway
Ivar Lumi
20:36 18 Aug '09  
This probably wont happen before some month.
GeneralHow to run both SIP Proxy and a client in the same computer?
kaiwnyt
16:36 10 Jul '09  
First I run the proxy in my computer, then run X-Lite client. But the client can't register in the proxy.

********************************************************************************************
Request [method='REGISTER'; cseq='1'; transport='UDP'; size='545'; received '127.0.0.1:34506' -> '127.0.0.1:5060'.
<begin>
REGISTER sip:127.0.0.1 SIP/2.0
Via: SIP/2.0/UDP 127.0.0.1:34506;branch=z9hG4bK-d8754z-6e730a1667197941-1---d8754z-;rport=34506;received=127.0.0.1
Max-Forwards: 70
Contact: <sip:kaiwn@127.0.0.1:34506;rinstance=effa56751174535f>
To: "kaiwn" <sip:kaiwn@127.0.0.1>
From: "kaiwn" <sip:kaiwn@127.0.0.1>;tag=9a4f4e47
Call-ID: MzNkMWM0YjY1ZDA0OWYwYThlYTFmN2IxM2E5NzJmNDA.
CSeq: 1 REGISTER
Expires: 3600
Allow: INVITE,ACK,CANCEL,OPTIONS,BYE,REFER,NOTIFY,MESSAGE,SUBSCRIBE,INFO
User-Agent: X-Lite release 1103d stamp 53117
Content-Length: 0

<end>
Transaction [branch='z9hG4bK-d8754z-6e730a1667197941-1---d8754z-';method='REGISTER';IsServer=true] created.
Transaction [branch='z9hG4bK-d8754z-6e730a1667197941-1---d8754z-';method='REGISTER';IsServer=True] switched to 'Trying' state.
Failed to send response to host '127.0.0.1' IP end point '127.0.0.1:34506'.
Transaction [branch='z9hG4bK-d8754z-6e730a1667197941-1---d8754z-';method='REGISTER';IsServer=true] transport exception: Host '127.0.0.1:34506' is not accessible.
Transaction [branch='z9hG4bK-d8754z-6e730a1667197941-1---d8754z-';method='REGISTER';IsServer=True] switched to 'Terminated' state.
Request [method='REGISTER'; cseq='1'; transport='UDP'; size='545'; received '127.0.0.1:34506' -> '127.0.0.1:5060'.
<begin>
REGISTER sip:127.0.0.1 SIP/2.0
Via: SIP/2.0/UDP 127.0.0.1:34506;branch=z9hG4bK-d8754z-6e730a1667197941-1---d8754z-;rport=34506;received=127.0.0.1
Max-Forwards: 70
Contact: <sip:kaiwn@127.0.0.1:34506;rinstance=effa56751174535f>
To: "kaiwn" <sip:kaiwn@127.0.0.1>
From: "kaiwn" <sip:kaiwn@127.0.0.1>;tag=9a4f4e47
Call-ID: MzNkMWM0YjY1ZDA0OWYwYThlYTFmN2IxM2E5NzJmNDA.
CSeq: 1 REGISTER
Expires: 3600
Allow: INVITE,ACK,CANCEL,OPTIONS,BYE,REFER,NOTIFY,MESSAGE,SUBSCRIBE,INFO
User-Agent: X-Lite release 1103d stamp 53117
Content-Length: 0

********************************************************************************************
X-lite: I set the IP address and domain as : 127.0.0.1
sip proxy: host name & address of record : 127.0.0.1

Please help and thank you very much
GeneralRe: How to run both SIP Proxy and a client in the same computer?
Ivar Lumi
21:25 12 Jul '09  
Its not reccomened t run on localhost(127.0.0.1).

Also you must ensure that firewall programs wont block UDP traffic.
GeneralRe: How to run both SIP Proxy and a client in the same computer?
kaiwnyt
18:32 14 Jul '09  
Thank your reply, Ivar.

I close window's firewall and antivirus software, but it doesn't work.

After I replace localhost(127.0.0.1) with actual IP(192.168.1.112), error occurs in X-lite:
Registration error 407 - Proxy Authentication required. Authentication failed.
SIP debug:
*****************************************************************************************************************
Request [method='REGISTER'; cseq='1'; transport='UDP'; size='561'; received '192.168.1.112:37788' -> '192.168.1.112:5060'.
<begin>
REGISTER sip:192.168.1.112 SIP/2.0
Via: SIP/2.0/UDP 127.0.0.1:37788;branch=z9hG4bK-d8754z-fa6cb94e3d2ee844-1---d8754z-;rport=37788;received=192.168.1.112
Max-Forwards: 70
Contact: <sip:kaiwn@127.0.0.1:37788;rinstance=6fa201926d45caa5>
To: "kaiwn" <sip:kaiwn@192.168.1.112>
From: "kaiwn" <sip:kaiwn@192.168.1.112>;tag=f352ba6a
Call-ID: MWVjZWExYzI3NDI0NjFlZjAzYTIzMTZmNDhhNDdlMGM.
CSeq: 1 REGISTER
Expires: 3600
Allow: INVITE,ACK,CANCEL,OPTIONS,BYE,REFER,NOTIFY,MESSAGE,SUBSCRIBE,INFO
User-Agent: X-Lite release 1103d stamp 53117
Content-Length: 0

<end>
Transaction [branch='z9hG4bK-d8754z-fa6cb94e3d2ee844-1---d8754z-';method='REGISTER';IsServer=true] created.
Transaction [branch='z9hG4bK-d8754z-fa6cb94e3d2ee844-1---d8754z-';method='REGISTER';IsServer=True] switched to 'Trying' state.
Response [flowReuse=true; transactionID='z9hG4bK-d8754z-fa6cb94e3d2ee844-1---d8754z-'; method='REGISTER'; cseq='1'; transport='UDP'; size='537'; statusCode='407'; reason='Proxy Authentication Required'; sent '192.168.1.112:5060' -> '192.168.1.112:37788'.
<begin>
SIP/2.0 407 Proxy Authentication Required
Via: SIP/2.0/UDP 127.0.0.1:37788;branch=z9hG4bK-d8754z-fa6cb94e3d2ee844-1---d8754z-;rport=37788;received=192.168.1.112
From: "kaiwn" <sip:kaiwn@192.168.1.112>;tag=f352ba6a
To: "kaiwn" <sip:kaiwn@192.168.1.112>;tag=d64043f8812fe2a1eb7fe3ea
Call-ID: MWVjZWExYzI3NDI0NjFlZjAzYTIzMTZmNDhhNDdlMGM.
CSeq: 1 REGISTER
Allow: INVITE,ACK,CANCEL,BYE,MESSAGE
Proxy-Authenticate: digest realm="",nonce="c68b373754244ddebfe6170763732df6",opaque="f9905829986f45fc960e4e11fe81129c"
Content-Length: 0

<end>
Transaction [branch='z9hG4bK-d8754z-fa6cb94e3d2ee844-1---d8754z-';method='REGISTER';IsServer=True] switched to 'Completed' state.
Transaction [branch='z9hG4bK-d8754z-fa6cb94e3d2ee844-1---d8754z-';method='REGISTER';IsServer=true] timer J(Non-INVITE request retransmission wait) started, will trigger after 32000.
Request [method='REGISTER'; cseq='2'; transport='UDP'; size='785'; received '192.168.1.112:37788' -> '192.168.1.112:5060'.
<begin>
REGISTER sip:192.168.1.112 SIP/2.0
Via: SIP/2.0/UDP 127.0.0.1:37788;branch=z9hG4bK-d8754z-3938bc3f86545228-1---d8754z-;rport=37788;received=192.168.1.112
Max-Forwards: 70
Contact: <sip:kaiwn@127.0.0.1:37788;rinstance=6fa201926d45caa5>
To: "kaiwn" <sip:kaiwn@192.168.1.112>
From: "kaiwn" <sip:kaiwn@192.168.1.112>;tag=f352ba6a
Call-ID: MWVjZWExYzI3NDI0NjFlZjAzYTIzMTZmNDhhNDdlMGM.
CSeq: 2 REGISTER
Expires: 3600
Allow: INVITE,ACK,CANCEL,OPTIONS,BYE,REFER,NOTIFY,MESSAGE,SUBSCRIBE,INFO
Proxy-Authorization: Digest username="kaiwnAuth",realm="",nonce="c68b373754244ddebfe6170763732df6",uri="sip:192.168.1.112",response="4852279d2e03c34b326f2c015edd7722",algorithm=MD5,opaque="f9905829986f45fc960e4e11fe81129c"
User-Agent: X-Lite release 1103d stamp 53117
Content-Length: 0

<end>
Transaction [branch='z9hG4bK-d8754z-3938bc3f86545228-1---d8754z-';method='REGISTER';IsServer=true] created.
Transaction [branch='z9hG4bK-d8754z-3938bc3f86545228-1---d8754z-';method='REGISTER';IsServer=True] switched to 'Trying' state.
Response [flowReuse=true; transactionID='z9hG4bK-d8754z-3938bc3f86545228-1---d8754z-'; method='REGISTER'; cseq='2'; transport='UDP'; size='561'; statusCode='407'; reason='Proxy Authentication Required: Authentication failed.'; sent '192.168.1.112:5060' -> '192.168.1.112:37788'.
<begin>
SIP/2.0 407 Proxy Authentication Required: Authentication failed.
Via: SIP/2.0/UDP 127.0.0.1:37788;branch=z9hG4bK-d8754z-3938bc3f86545228-1---d8754z-;rport=37788;received=192.168.1.112
From: "kaiwn" <sip:kaiwn@192.168.1.112>;tag=f352ba6a
To: "kaiwn" <sip:kaiwn@192.168.1.112>;tag=f58d481f93aed3fd688a75ec
Call-ID: MWVjZWExYzI3NDI0NjFlZjAzYTIzMTZmNDhhNDdlMGM.
CSeq: 2 REGISTER
Allow: INVITE,ACK,CANCEL,BYE,MESSAGE
Proxy-Authenticate: digest realm="",nonce="96734a5506cd47db87eb254a058ddb13",opaque="f9905829986f45fc960e4e11fe81129c"
Content-Length: 0
*****************************************************************************************************************

I hope to debug this program with a client in the same computer, so that I can learn something from the great work.

Thanks
QuestionSystem.IndexOutOfRangeException:
gokhanuslu
5:18 17 Jun '09  
Hello,

We are really greatfull for this stack and demo. but we want to understand how demo works. we have 3 years SIP experience as engineer. so we are aware about the registration authantication bla bla issues. i have many times managed to register clients to proxy servers.

now we want to use your stack but we are unable to make the code up and runnning. when we try it after registration packet has arrived we got this error:

System.IndexOutOfRangeException: Dizin, dizi sınırlarının dışındaydı.
konum: LumiSoft.Net.SIP.Proxy.SIP_Proxy.ForwardRequest(Boolean statefull, SIP_RequestReceivedEventArgs e, Boolean addRecordRoute) C:\Users\GU\Desktop\Net\Net\SIP\Proxy\SIP_Proxy.cs içinde: satır 383
konum: LumiSoft.Net.SIP.Proxy.SIP_Proxy.OnRequestReceived(SIP_RequestReceivedEventArgs e) C:\Users\GU\Desktop\Net\Net\SIP\Proxy\SIP_Proxy.cs içinde: satır 174

and the log is:
Request [method='REGISTER'; cseq='1'; transport='UDP'; size='438'; received '192.168.1.107:5060' -> '192.168.1.100:5060'.

REGISTER sip:192.168.1.100 SIP/2.0
Via: SIP/2.0/UDP 192.168.1.107;rport=5060;branch=z9hG4bKc0a8016b000000104a38f98c0000475c00000001;received=192.168.1.107
Contact: <sip:12345@192.168.1.107:5060>
Call-ID: 9C5518D6-209A-4D79-BC50-41222D878CE0@192.168.1.107
CSeq: 1 REGISTER
From: <sip:12345@192.168.1.100>;tag=996183312389
Max-Forwards: 70
To: <sip:12345@192.168.1.100>
User-Agent: SJphone/1.60.289a (SJ Labs)
Content-Length: 0


Response [transactionID=''; method='REGISTER'; cseq='1'; transport='UDP'; size='450'; statusCode='500'; reason='Server Internal Error: Dizin, dizi sınırlarının dışındaydı.'; sent '' -> '192.168.1.107:5060'.

SIP/2.0 500 Server Internal Error: Dizin, dizi sınırlarının dışındaydı.
Via: SIP/2.0/UDP 192.168.1.107;rport=5060;branch=z9hG4bKc0a8016b000000104a38f98c0000475c00000001;received=192.168.1.107
From: <sip:12345@192.168.1.100>;tag=996183312389
To: <sip:12345@192.168.1.100>;tag=c94c432a80ee7cbab17ca580
Call-ID: 9C5518D6-209A-4D79-BC50-41222D878CE0@192.168.1.107
CSeq: 1 REGISTER
Allow: INVITE,ACK,CANCEL,BYE,MESSAGE
Content-Length: 0


Request [method='REGISTER'; cseq='1'; transport='UDP'; size='438'; received '192.168.1.107:5060' -> '192.168.1.100:5060'.

REGISTER sip:192.168.1.100 SIP/2.0
Via: SIP/2.0/UDP 192.168.1.107;rport=5060;branch=z9hG4bKc0a8016b000000104a38f98c0000475c00000001;received=192.168.1.107
Contact: <sip:12345@192.168.1.107:5060>
Call-ID: 9C5518D6-209A-4D79-BC50-41222D878CE0@192.168.1.107
CSeq: 1 REGISTER
From: <sip:12345@192.168.1.100>;tag=996183312389
Max-Forwards: 70
To: <sip:12345@192.168.1.100>
User-Agent: SJphone/1.60.289a (SJ Labs)
Content-Length: 0


Response [transactionID=''; method='REGISTER'; cseq='1'; transport='UDP'; size='450'; statusCode='500'; reason='Server Internal Error: Dizin, dizi sınırlarının dışındaydı.'; sent '' -> '192.168.1.107:5060'.

SIP/2.0 500 Server Internal Error: Dizin, dizi sınırlarının dışındaydı.
Via: SIP/2.0/UDP 192.168.1.107;rport=5060;branch=z9hG4bKc0a8016b000000104a38f98c0000475c00000001;received=192.168.1.107
From: <sip:12345@192.168.1.100>;tag=996183312389
To: <sip:12345@192.168.1.100>;tag=6ea84feba383a1d0c747cbe4
Call-ID: 9C5518D6-209A-4D79-BC50-41222D878CE0@192.168.1.107
CSeq: 1 REGISTER
Allow: INVITE,ACK,CANCEL,BYE,MESSAGE
Content-Length: 0


Request [method='REGISTER'; cseq='1'; transport='UDP'; size='438'; received '192.168.1.107:5060' -> '192.168.1.100:5060'.

REGISTER sip:192.168.1.100 SIP/2.0
Via: SIP/2.0/UDP 192.168.1.107;rport=5060;branch=z9hG4bKc0a8016b000000104a38f98c0000475c00000001;received=192.168.1.107
Contact: <sip:12345@192.168.1.107:5060>
Call-ID: 9C5518D6-209A-4D79-BC50-41222D878CE0@192.168.1.107
CSeq: 1 REGISTER
From: <sip:12345@192.168.1.100>;tag=996183312389
Max-Forwards: 70
To: <sip:12345@192.168.1.100>
User-Agent: SJphone/1.60.289a (SJ Labs)
Content-Length: 0


Response [transactionID=''; method='REGISTER'; cseq='1'; transport='UDP'; size='450'; statusCode='500'; reason='Server Internal Error: Dizin, dizi sınırlarının dışındaydı.'; sent '' -> '192.168.1.107:5060'.

SIP/2.0 500 Server Internal Error: Dizin, dizi sınırlarının dışındaydı.
Via: SIP/2.0/UDP 192.168.1.107;rport=5060;branch=z9hG4bKc0a8016b000000104a38f98c0000475c00000001;received=192.168.1.107
From: <sip:12345@192.168.1.100>;tag=996183312389
To: <sip:12345@192.168.1.100>;tag=d5f14e16b18b0d6a4438b111
Call-ID: 9C5518D6-209A-4D79-BC50-41222D878CE0@192.168.1.107
CSeq: 1 REGISTER
Allow: INVITE,ACK,CANCEL,BYE,MESSAGE
Content-Length: 0


Request [method='REGISTER'; cseq='1'; transport='UDP'; size='438'; received '192.168.1.107:5060' -> '192.168.1.100:5060'.

REGISTER sip:192.168.1.100 SIP/2.0
Via: SIP/2.0/UDP 192.168.1.107;rport=5060;branch=z9hG4bKc0a8016b000000104a38f98c0000475c00000001;received=192.168.1.107
Contact: <sip:12345@192.168.1.107:5060>
Call-ID: 9C5518D6-209A-4D79-BC50-41222D878CE0@192.168.1.107
CSeq: 1 REGISTER
From: <sip:12345@192.168.1.100>;tag=996183312389
Max-Forwards: 70
To: <sip:12345@192.168.1.100>
User-Agent: SJphone/1.60.289a (SJ Labs)
Content-Length: 0


Response [transactionID=''; method='REGISTER'; cseq='1'; transport='UDP'; size='450'; statusCode='500'; reason='Server Internal Error: Dizin, dizi sınırlarının dışındaydı.'; sent '' -> '192.168.1.107:5060'.

SIP/2.0 500 Server Internal Error: Dizin, dizi sınırlarının dışındaydı.
Via: SIP/2.0/UDP 192.168.1.107;rport=5060;branch=z9hG4bKc0a8016b000000104a38f98c0000475c00000001;received=192.168.1.107
From: <sip:12345@192.168.1.100>;tag=996183312389
To: <sip:12345@192.168.1.100>;tag=827d4211be64ab5648ce8c6e
Call-ID: 9C5518D6-209A-4D79-BC50-41222D878CE0@192.168.1.107
CSeq: 1 REGISTER
Allow: INVITE,ACK,CANCEL,BYE,MESSAGE
Content-Length: 0




i look forward your help about this issue.

Thanks a lot
Generalis there is client
el3ashe2
3:54 11 Jun '09  
dear ivan

thank you for this good article but i need client working with this server can you give me one or link to open project for one ??

or is there is any other way to use MSN messenger as i saw in this website

http://officesip.com

thnx again

and if we can talk directly plz add you MSN email or yahoo messenger email
GeneralRe: is there is client
Ivar Lumi
7:32 11 Jun '09  
Hi,

Opensource client ... i dont know to suggest.

But closed source ones, you may try X-Lite.
GeneralRe: is there is client
el3ashe2
23:42 13 Jun '09  
it works thnx

but let me know how to use it without domain

second issue i want to use MYSQL or SQL as database of SIP server
GeneralRe: is there is client
Ivar Lumi
20:52 14 Jun '09  
>second issue i want to use MYSQL or SQL as database of SIP server
Thas not a issue, you just need to code it by yourself.
GeneralRe: is there is client
el3ashe2
2:54 15 Jun '09  
i was asking if it is possible or not and i know that i'll do

but I'm asking if i did that is there is any problem could happen to the service??

thnx
GeneralRe: is there is client
Ivar Lumi
3:35 15 Jun '09  
>but I'm asking if i did that is there is any problem could happen to the service??
This again depends on your coding techinques and sikkls.
GeneralDoes it work without setting domain
lliaolx_guilin
15:10 10 Jun '09  
Hi,

I am trying to make it work at my laptop, single computer. My laptop doesn't belong to any domain, do I have to make it in a domain?

Thanks,

Linda
GeneralRe: Does it work without setting domain
Ivar Lumi
1:30 11 Jun '09  
Hi,

Yes it wold work without domain in LAN(all sip devices connected through same sip proxy) enviromnet.
GeneralRe: Does it work without setting domain
lliaolx_guilin
8:12 11 Jun '09  
Thanks Ivar.But I am using X-lite as the soft phone which ask me to set the domain name, I left it empty, X-lite doesn't accept it, how can I set it?

Thanks in advance,

Linda
GeneralRe: Does it work without setting domain
Ivar Lumi
8:19 11 Jun '09  
Make a dumb domain name in proxy: like "test.com".
Aslo fill it in X-Lite.
GeneralRe: Does it work without setting domain
lliaolx_guilin
13:53 11 Jun '09  
Thanks Ivar, the domain name problen is solved just using your suggestion. Another problem is the authentification always got error.I did some debugging, I found the response couldn't match the CalculateResponse in the auth.httpdigest.authenticate method. I am guessing the response is from client, and the calculateresponse is calculated by proxy, and I am using x-lite. Do you have any idea about this? Or you may know somebody else have solved this problem.

Anyway, if I return true in the auth.httpdigest.authenticate method, it is working now. Just want to know how the authentification part working. Thanks for your replay agian.

Linda


Last Updated 11 Jun 2007 | Advertise | Privacy | Terms of Use | Copyright © CodeProject, 1999-2010