On Tue, Apr 21, 2009 at 8:54 PM, David Jardin <[email protected]> wrote:
> Ok thank you very much for your help Takeshi,
> I understood I need to write in a .csv a list of users (doesn't matter
> SEQUENTIAL or RANDOM) but how my scenario will connect parallely several of
> those users?
> What you try to explain to me , let's say if a scenario does a INVITE 100
> 180 200 ACK BYE, is that sipp won't do :
> [USER 1]
> INVITE, 100, 180, 200,ACK, BYE
> [USER 2]
> INVITE, 100, 180, 200,ACK, BYE
> ...
> [USER N]
> INVITE, 100, 180, 200,ACK, BYE
> sequentially, but will do :
> [USER 1]
>          [USER 2]
>   [USER N]
> INVITE, 100, 180, 200,ACK, BYE
>   INVITE, 100, 180, 200,ACK, BYE                           INVITE, 100, 180,
> 200,ACK, BYE
> parallely?
> Or are there any special parameters to add in the scenario?
> Sorry to bother you and thanks again.

The way SIPp generate calls is exactly the same no matter if you use
an injection file or not. Surely you know SIPp can generate several
simultaneous calls.
The difference is that with an injection file you can provide variant
data to the calls.
For this you just have to add into the scenario the [field0]
[field1]...[fieldN] parameters on the locations you want the info from
the injection file to be inserted.

Suppose you this in your injection file:
SEQUENTIAL
Alice;domain.a.com
Bob;domain.b.com

Then in your scenario you may put something like this:

From: "[field0]" <sip:[fiel...@[field1]>;tag=some-tag-value

When generating calls, SIPp will replace information so that one call
will go as:
From: "Alice" <sip:[email protected]>;tag=some-tag-value
and the other will go as:
From: "Bob" <sip:[email protected]>;tag=some-tag-value

regards,
takeshi

------------------------------------------------------------------------------
Stay on top of everything new and different, both inside and 
around Java (TM) technology - register by April 22, and save
$200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco.
300 plus technical and hands-on sessions. Register today. 
Use priority code J9JMT32. http://p.sf.net/sfu/p
_______________________________________________
Sipp-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/sipp-users

Reply via email to