On Tue, Oct 20, 2009 at 1:46 AM, Koopmann, Jan-Peter
<jan-pe...@koopmann.eu>wrote:

> Hi,
>
> I would like to use sipp to test a few thousand registrations and
> subscriptions. I have succeeded in convincing sipp to do x concurrent
> calls of y seconds etc. However our current tests with registrations
> all seem to register the phone and after working through the XML file
> drop the connection. How do I teach sipp to get 2000 registrations
> going, keep them up, do subscriptions, answer to options (asterisk)? I
> am aware that you are not going to give me detailed step by step
> instructions but if you could put me into the right way of sipp-
> thinking it would help tremendously!
>

As far as I know, SIPp would not be able to handle Registration,
Subscription and OPTIONS messages in a single scenario unless you can ensure
all of the messages involved come and go with the same Call-ID for each
"session" doing  REGISTER/SUBSCRIBE/OPTIONS.
If I had to do it I would write 3 different scenarios and run them
concurrently (start one instance of SIPp for each of them).
To keep registering and subscribing, you just have to use a loop:

  <label id="start_of_loop" />

  ... REGISTER or SUBSCRiBE processing goes here ...

  <pause/>

  <nop next="start_of_loop" />


Then, if the OPTIONS is sent by Asterisk due to Registration (I don't know,
I never used Asterisk), you must set the IP/Port of a third instance of SIPp
running a UAS scenario and pass this info in the header Contact of REGISTER
(or SUBSCRIBE).

And maybe ims_bench could handle this better (I don't know, I never used
that either)
http://sipp.sourceforge.net/ims_bench/
as it says it improves on SIPp by adding (among other things)
"multi-scenario support".

(Obs: the REGISTER and SUBSCRIBE scenarios, could be merged in a single
one).
------------------------------------------------------------------------------
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
_______________________________________________
Sipp-users mailing list
Sipp-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sipp-users

Reply via email to