Hi
I'm using SIPp to test a program based on the eXosip2 SIP stack, which 
automatically sends a "101 Dialog Establishement" (spelling from header) 
message whenever an INVITE or SUBSCRIBE message is received. The problem 
is that my SIPp scenario generates this error when it receives a 101 
message:

Aborting call on unexpected message for Call-Id '[EMAIL PROTECTED]': while 
expecting '101' (index 1), received 'SIP/2.0 101 Dialog Establishement

which should be accounted for in the scenario I'm using:

<scenario name="Basic Sipstone UAC">
  <!-- In client mode (sipp placing calls), the Call-ID MUST be         -->
  <!-- generated by sipp. To do so, use [call_id] 
keyword.                -->
  <send>
    <![CDATA[

      SUBSCRIBE sip:[EMAIL PROTECTED]:[remote_port] SIP/2.0
      Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
      From: sipp 
<sip:[EMAIL PROTECTED]:[local_port]>;tag=[pid]SIPpTag00[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
      Expires: 30   
      Event: Presence
      Subject: Performance Test
      Content-Type: application/sdp
      Content-Length: [len]

    ]]>
  </send>

  <!-- recv response="100" optional="true">
  </recv -->
  <recv response="101" optional="true">
  </recv>
  <recv response="180" optional="true">
  </recv>
  <recv response="183" optional="true">
  </recv>

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

</scenario>

How do I get the scenario to accept the 101 message correctly? Am I 
doing something wrong? I'm trying to disable it from sending, but 
haven't got it right yet, either...

Thanks,
mike

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Sipp-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/sipp-users

Reply via email to