HI All,

  I am trying to execute the following scenario using SIPp. It consists of
the following:

INVITE ----------->
100 <----------------
200 <---------------
ACK -------------->
NOTIFY <----------------
100 ----------->
200 --------------->
ACK <---------------

THe problem is that the NOTIFY never gets received by SIPp, althought I am
sure that it is sent to the correct ip:port. I am running SIPP using this
command

sipp 127.0.0.1:5060 -p 5061 -sf cd3_calls1.xml -m 1

Everything before the NOTIFY is fine, here is my scenario:


<scenario name="CD3 incoming call1">

   <send>
       <![CDATA[

           INVITE
sip:[EMAIL PROTECTED]:[remote_port];nortelconverged=term_logcall SIP/2.0
           Via: SIP/2.0/[transport] [local_ip]:[local_port]
           From: sipp <sip:[EMAIL PROTECTED]:[local_port]>;tag=[call_number]
           To: sut <sip:[EMAIL PROTECTED]:[remote_port]>
           Call-ID: [call_id]
           Cseq: 1 INVITE
           Contact: sip:[EMAIL PROTECTED]:[local_port]
           Max-Forwards: 70
           supported: bogus_value
           allow: bogus_value
           Content-Type: application/sdp
           Content-Length: [len]

           v=0
           o=user1 53655765 2353687637 IN IP4 127.0.0.1
           s=-
           t=0 0
           c=IN IP4 [media_ip]
           m=audio [media_port] RTP/AVP 0
           a=rtpmap:0 PCMU/8000

       ]]>
   </send>

   <recv response="100" >
   </recv>

<recv response="200" >
   </recv>

   <send>
       <![CDATA[

           ACK sip:[EMAIL PROTECTED]:[remote_port] SIP/2.0
           Via: SIP/2.0/[transport] [local_ip]:[local_port]
           From: sipp <sip:[EMAIL PROTECTED]:[local_port]>;tag=[call_number]
           To: sut <sip:[EMAIL PROTECTED]:[remote_port]>[peer_tag_param]
           Call-ID: [call_id]
           Cseq: 1 ACK
           Contact: sip:[EMAIL PROTECTED]:[local_port]
           Max-Forwards: 20
           Content-Length: 0

       ]]>
   </send>


   <recv request="NOTIFY">
   </recv>

   <send>
   <![CDATA[

       SIP/2.0 100 Trying
       [last_v:]
       [last_f:]
       [last_t:]
       [last_i:]
       [last_CSeq:]
       Contact: <sip:[local_ip]:[local_port];transport=[transport]>
       supported: com.nortelnetworks.firewall,p-3rdpartycontrol,nosec,join,
com.nortelnetworks.im.encryption
       Content-Length: 0

   ]]>
   </send>

   <send>
   <![CDATA[

       SIP/2.0 200 OK
       [last_v:]
       [last_f:]
       [last_t:]
       [last_i:]
       [last_CSeq:]
       Contact: <sip:[local_ip]:[local_port];transport=[transport]>
       Content-Length: 0

   ]]>
   </send>

   <recv request="ACK">
   </recv>

<!-- definition of the response time repartition table (unit is ms)   -->
   <ResponseTimeRepartition value="10, 20, 30, 40, 50, 100, 150, 200"/>

   <!-- definition of the call length repartition table (unit is ms)
-->
   <CallLengthRepartition value="10, 50, 100, 500, 1000, 5000, 10000"/>

</scenario>
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Sipp-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/sipp-users

Reply via email to