Title: Message
Here is the current problem:
 
I have multiple UAs (in this scenario: 2) that need to register, then invite, then talk, then tear down.  My problem is that the SIP server is seeing these UAs as the same call.  The call_id will not increment on the second register, causing the system to believe it is the same UA registering.  Here is my scenario.  Is it possible to have multiple SIP stations (100+)register, then invite, then converse, then bye or will I need to run the SIPp program on multiple machines to accomplish this feat?
 
My command line:  sipp 10.0.60.1 -sf register.xml -cid_str [EMAIL PROTECTED] -m 1 -base_cseq 0
 
I am using Windows version 1.1r6
 
Scenario:
<?xml version="1.0" encoding="ISO-8859-1" ?>
 <scenario name="register_answer">
 <send>
  <![CDATA[
    REGISTER sip:10.0.60.1 SIP/2.0
        Via: SIP/2.0/UDP 10.0.60.100:5060;branch=[branch]
        From: <sip:[EMAIL PROTECTED]:5060>;tag=[call_number]
        To: <sip:[EMAIL PROTECTED]:5060>
        Call-ID: [call_id]
        CSeq: [cseq+1] REGISTER
        Contact: <sip:[EMAIL PROTECTED]:5060>
        Content-Length: 0
        Expires: 3600
    ]]>
 </send>
 
 <nop><action><log message="sent REGISTER."/></action></nop>
 
<recv response="200" >
 </recv>
<pause milliseconds="2000">
</pause>
 <send>
 <![CDATA[
        REGISTER sip:10.0.60.1 SIP/2.0
        Via: SIP/2.0/UDP 10.0.60.100:5060;branch=[branch]
        From: <sip:[EMAIL PROTECTED]:5060>;tag=[call_number]
        To: <sip:[EMAIL PROTECTED]:5060>
        Call-ID: [call_id]
        CSeq: [cseq] REGISTER
        Contact: <sip:[EMAIL PROTECTED]:5060>
        Content-Length: 0
        Expires: 3600
    ]]>
 </send>
 <nop><action><log message="sent 2nd."/></action></nop>
   <recv response="200" >
  </recv>
 
 <nop><action><log message="CALL OVER."/></action></nop>
 
 </scenario>
 

Jeff OllierNetwork Quality Control Engineer

 
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Sipp-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/sipp-users

Reply via email to