Re: [Sipp-users] What is dead call?

2010-04-23 Thread Charles P Wright
If a call has completed, then SIPp maintains a small record of the call for a little bit. This way any messages related to that call; after the call has already been closed can be cataloged as dead call messages. Without keeping this record, the messages for a completed call are counted as

Re: [Sipp-users] label, next and ontimeout broken in 3.1

2010-01-13 Thread Charles P Wright
I think the best answer would be to strdup the return from xp_get_value, as the named labels are far friendlier when writing any complex scenario that uses more than a handful of labels. Charles Peter

Re: [Sipp-users] Query- watchdog Functionality

2009-09-30 Thread Charles P Wright
You can increase the timeout, but if you are getting watch dog timeouts, it means that you do not have enough resources on the machine to generate the amount of traffic that you are asking for. Charles Sumeet Bhardwaj sumeet_bhard...@persistent.co.in 09/30/2009 06:21 AM To

Re: [Sipp-users] Kill key?

2009-05-07 Thread Charles P Wright
Try Q. Charles Mike Ayers mike_ay...@tvworks.com 05/07/2009 08:05 PM To sipp-users@lists.sourceforge.net cc Subject [Sipp-users] Kill key? I'm using SIPP 3.x (2009-01-21 unstable). I've found that 2 qs don't make a kill, unlike 2.x. I'm trying to kill a server by

Re: [Sipp-users] How can i config SIPp send response through VIA header?

2009-04-07 Thread Charles P Wright
You can use regular expression matching and the setdest action. Charles hui cheng avantasia2...@gmail.com 04/07/2009 04:58 AM To sipp-users@lists.sourceforge.net cc Subject [Sipp-users] How can i config SIPp send response through VIA header? hi all How cant set SIPp send response

Re: [Sipp-users] Multiple rtd in recv

2009-03-30 Thread Charles P Wright
The XML parser would ideally throw an error, but it doesn't. To get this behavior you'll need to use some gotos and nops. Charles Artem Naluzhnyy t...@nhamon.com.ua 03/30/2009 09:05 AM To sipp-users@lists.sourceforge.net cc Subject [Sipp-users] Multiple rtd in recv Hi, Only first

Re: [Sipp-users] Storing the result of an external command into an internal variable

2009-03-26 Thread Charles P Wright
Not without modifying the SIPp code. Charles Madiha Shahid madis1...@gmail.com 03/26/2009 08:50 AM To sipp-users@lists.sourceforge.net cc Subject [Sipp-users] Storing the result of an external command into an internal variable Hi, I want to store the result of an external command

Re: [Sipp-users] A more robust SIPp

2009-03-13 Thread Charles P Wright
Unfortunately, SIPp uses a built-in XML parser using strstr. Charles Kirwan, David (David) dkir...@avaya.com 03/13/2009 06:29 AM To sipp-users@lists.sourceforge.net cc Subject [Sipp-users] A more robust SIPp Hi, While writting a SIPp script, I omitted a forward slash. The script

Re: [Sipp-users] -trace_rtt

2009-02-17 Thread Charles P Wright
I think this could be an old version which used cout, and hence scientific notation for large numbers. What version is this from? More recent versions use printf, which should do regular decimal numbers. Charles 鄰家老王 wgh65...@hotmail.com 02/16/2009 11:15 PM To

Re: [Sipp-users] How to extract the second the second string from the VIA: header

2009-02-02 Thread Charles P Wright
You need to have parenthesis to capture just the part after the comma. Something like. ereg regexp=,(foo) assign_to=dummy,foovalue / Charles Pratap Nath pratapn...@gmail.com 02/02/2009 08:43 AM To sipp-users@lists.sourceforge.net cc Subject [Sipp-users] How to extract the second the

Re: [Sipp-users] Segmentation fault provoked by stack corruption while using big ResponseTimeRepartition or CallLengthRepartition values exceeding 1024 bytes in length

2009-01-26 Thread Charles P Wright
Artur, Thank you for the bug report.Subversion Revision 570 should correct this issue permanently. Charles Artur silveira da Cunha artur.silveira_da_cu...@alcatel-lucent.fr wrote on 01/26/2009 07:04:30 PM: Hi, sipp crashes with Segmentation fault error when in the scenary the

Re: [Sipp-users] Can sipp call rate and call parameter be controlled by external script/program

2009-01-24 Thread Charles P Wright
You can tell SIPp to change its rate using the control socket. Can I tell sipp, not to make next call, until I am ready again? You can set the rate to zero. You can probably change the call parameters using extended 3PCC. If you establish a socket to a 3PCC element and setup various

Re: [Sipp-users] Can sipp call rate and call parameter be controlled by external script/program

2009-01-23 Thread Charles P Wright
You can tell SIPp to change its rate using the control socket. You can probably change the call parameters using extended 3PCC. If you establish a socket to a 3PCC element and setup various parameters (look at the replace and insert actions so that you can update the in-memory representation

Re: [Sipp-users] Calls limit

2009-01-21 Thread Charles P Wright
By default, SIPp is closed loop and will not allow more than 3 * call duration (with a minimum of one second) calls to be outstanding. Specify -l 0 to get open loop behavior, which removes this limit. Charles Evgeny Miloslavsky emiloslav...@juniper.net 01/21/2009 04:46 AM To

Re: [Sipp-users] Random calls in SIPp

2009-01-21 Thread Charles P Wright
There is no way to do it without modifying the SIPp source code or using 3PCC. To modify the source code, you should look at opentask.cpp. For 3PCC, you need to have a master controller scenario that pauses a random amount, then kicks another scenario to do the actual call. Charles

Re: [Sipp-users] Can SIPp run two scenarios simultaneously?

2009-01-21 Thread Charles P Wright
You can't do this without using the same Call-ID or modifying the source. Charles Katarina Bogdan katarin...@net.hr 01/20/2009 07:42 AM Please respond to katarin...@net.hr To sipp-users@lists.sourceforge.net cc Subject [Sipp-users] Can SIPp run two scenarios simultaneously? This is

Re: [Sipp-users] size of xml scenarios

2009-01-19 Thread Charles P Wright
Yes. You may be able to change this line in xp_parser.c to get a larger limit. Charles #define XP_MAX_FILE_LEN 65536 Katarina Bogdan katarin...@net.hr 01/19/2009 10:23 AM Please respond to katarin...@net.hr To sipp-users@lists.sourceforge.net cc Subject [Sipp-users] size of xml

Re: [Sipp-users] Can client receve request and send reply

2009-01-19 Thread Charles P Wright
The scenario can either send or receive requests, but can not be both a client (initiate brand new scenarios) and server (accept brand new scenarios). A scenario is determined by call-id. Charles Katarina Bogdan katarin...@net.hr 01/19/2009 10:05 AM Please respond to katarin...@net.hr

Re: [Sipp-users] how to timeout on receive of a message

2009-01-19 Thread Charles P Wright
You can use an ontimeout attribute on your receive for the ACK. The usage should be in the reference document. Charles Amir Abdollahi aabdol...@yahoo.com 01/19/2009 09:09 AM Please respond to aabdol...@yahoo.com To sipp-users@lists.sourceforge.net cc Subject [Sipp-users] how to timeout

Re: [Sipp-users] Sipp scenario that first send a REGISTER and then wait for an INVITE

2009-01-12 Thread Charles P Wright
There is no way to do it in the same scenario without the patch. You can create two scenarios; and if needed tie them together with 3PCC. Charles Ulrik Svensson ulrik.svens...@ericsson.com 01/12/2009 12:16 PM To sipp-users@lists.sourceforge.net cc Subject [Sipp-users] Sipp scenario that

Re: [Sipp-users] Incorrect default behavior in case of SUBSCRIBE-NOTIFY flow

2009-01-11 Thread Charles P Wright
Use -default_behaviors all,-bye. Charles Evgeny Miloslavsky emiloslav...@juniper.net 01/11/2009 02:09 AM To Charles P Wright/Watson/i...@ibmus, sipp-users@lists.sourceforge.net cc Subject Incorrect default behavior in case of SUBSCRIBE-NOTIFY flow Hi While running SUBSCRIBE-NOTIFY

Re: [Sipp-users] rrs=true does not work

2009-01-09 Thread Charles P Wright
The rrs=true should be independent of next. Did you try a SIPp -trace_msg to see what it thinks it is sending? Charles Andreas Winkelbauer andreas.winkelba...@gmx.at wrote on 01/08/2009 11:33:27 PM: Hi, I am currently testing a SIPp scenario and I am experiencing problems with rrs=true

Re: [Sipp-users] Injecting values/variables

2009-01-09 Thread Charles P Wright
Andreas Winkelbauer andreas.winkelba...@gmx.at wrote on 01/09/2009 08:10:15 PM: 1) When using pcap play I would like to inject the path to the pcap file using a [fieldN] keyword or a variable [$n]. So, instead of something like exec play_pcap_audio=/path/to/file.pcap / I would like to

Re: [Sipp-users] -stat-delimiter parameter

2009-01-02 Thread Charles P Wright
Evegeny, It changes the string ; between fields to a string of your choosing. In Europe, Excel uses ; to differentiate fields, but in the US it uses ,. So we always use -stat_delimiter , (meaning -stat_delimiter [space] [comma]) which separates the fields using a comma instead of a

Re: [Sipp-users] How to use the [userid] keyword when running with -users option

2008-12-29 Thread Charles P Wright
testing tool for the SIP proto Anyway, I am now skipping this issue injecting a CSV file with a userid column, which I guess is the way to go -Aleksander On Tue, Dec 23, 2008 at 9:14 PM, Charles P Wright cpwri...@us.ibm.com wrote: What version of SIPp are you using? Charles

Re: [Sipp-users] Help regarding csv file

2008-12-19 Thread Charles P Wright
You can't use keywords in the regexp action. Charles Sumeet Bhardwaj sumeet_bhard...@persistent.co.in wrote on 12/19/2008 05:22:16 AM: Hi all, I am trying to input value from CSV into the scenario file using ? ?inf cvs file name ? command. But SIPp is not extracting value from csv

Re: [Sipp-users] Problem about 2nd Via

2008-12-18 Thread Charles P Wright
You'll need two separate regexp match actions using the occurrence=1 and occurrence=2 tags. Charles Evgeny Miloslavsky emiloslav...@juniper.net wrote on 12/18/2008 01:26:52 AM: Hi Giuseppe! As a solution/workaround for this situation I would suggest you after INVITE request received by

Re: [Sipp-users] String manipulation with Sipp

2008-12-16 Thread Charles P Wright
The only way to do it is to use regular expressions. For anything else, you'll need to modify the source code. Adding an action is relatively straightforward. You need to change scenario.cpp to parse it, actions.hpp to define it, and call.cpp to actually do it. Charles Tuan Viet Nguyen

Re: [Sipp-users] MAX rate of dialogs SIPp able to handle

2008-12-09 Thread Charles P Wright
It will depend on the hardware and complexity of your scenario, but 250 CPS should certainly be possible on a relatively modern Linux box [within the last 3-4 years] for the basic UAC/UAS scenario. The number of outstanding dialogs is mainly memory constrained, but there is some affect on

Re: [Sipp-users] One Call-ID per scenario

2008-12-01 Thread Charles P Wright
If you only want a single scenario to execute; you can probably hack it up. Otherwise it will require a pretty serious design change. Charles Venkat Narasimhan [EMAIL PROTECTED] wrote on 12/01/2008 02:04:52 AM: Folks, I am looking for a hack/mod that lets SIPp(running an xml)

Re: [Sipp-users] How to process second invite with another call-id

2008-11-26 Thread Charles P Wright
You can create an out-of-call scenario that will create a new call for all unexpected messages using the -oocsf option. Charles Dhananjaya Reddy Eadala [EMAIL PROTECTED] 11/26/2008 11:04 PM To [EMAIL PROTECTED] cc sipp-users@lists.sourceforge.net Subject Re: [Sipp-users] How to process

Re: [Sipp-users] different pcap files for different calls?

2008-11-21 Thread Charles P Wright
You have to change scenario.cpp so that the play_pcap_audio argument instantiates a SendingMessage structure (use the action-setMessage function), and in call.cpp the createSendingMessage should be used where the CAction::E_AT_PLAY_PCAP_AUDIO is executed in executeAction(). It should involve

Re: [Sipp-users] Variables as integer

2008-11-13 Thread Charles P Wright
You need to get a recent subversion trunk version, 3.1 does not have this support. Charles Shamik Mukhopadhyay -X (shmukhop - WIPRO at Cisco) [EMAIL PROTECTED] 11/13/2008 07:07 PM To mayamatakeshi [EMAIL PROTECTED], Charles P Wright/Watson/[EMAIL PROTECTED] cc sipp-users

Re: [Sipp-users] SIPP Conditional Branching with If-Then-Else Variable Testing

2008-11-04 Thread Charles P Wright
David, If you get a recent trunk, you can use text names for labels and variables. I think you can even do it in 3.1. Charles David Adams [EMAIL PROTECTED] 11/04/2008 08:12 AM To Charles P Wright/Watson/[EMAIL PROTECTED] cc sipp-users@lists.sourceforge.net Subject RE: [Sipp-users] SIPP

Re: [Sipp-users] sipp start_rtd and rtp issue!

2008-10-16 Thread Charles P Wright
Your nop is not terminated with a /nop (or alternatively nop rtd=true /). Charles ZHOU Gaofeng A [EMAIL PROTECTED] 10/16/2008 05:13 AM To sipp-users@lists.sourceforge.net cc Subject [Sipp-users] sipp start_rtd and rtp issue! Hi : who can help me?, Now I try to write a xml

Re: [Sipp-users] error: ?INT_MAX? was not decl ared in this scope

2008-10-16 Thread Charles P Wright
On RedHat it is in /usr/include/limits.h, which is part of the glibc-headers package. Charles Antoine [EMAIL PROTECTED] 10/16/2008 02:51 PM To sipp-users@lists.sourceforge.net cc Subject [Sipp-users] error: ?INT_MAX? was not declared in this scope I am trying to install SIPp on a

Re: [Sipp-users] Poisson call arrival rate code in IMS Bench SIPp

2008-10-14 Thread Charles P Wright
I've done something similar to this in the regular SIPp using third party call control. Essentially, I had a controller that would pause exponentially in a loop, and then send a 3PCC kick-off message to a UAC. The easier way is probably to modify the opentask.cpp class to support a Poisson

Re: [Sipp-users] Why doesn´t SIPp re-send the ACK wh en it receive a lot of messages 200 OK?

2008-10-07 Thread Charles P Wright
You should include the output of -trace_calldebug in your message. Charles ZiLi0n [EMAIL PROTECTED] wrote on 10/07/2008 04:33:10 PM: SIPp should retransmit the ACK if the retransmitted 200 is identical. You should enable -trace_msg and -trace_calldebug and see what the logs tell

Re: [Sipp-users] From-Tag as alpha-numeric string

2008-10-05 Thread Charles P Wright
The easiest way would be to use an injection file. Charles Evgeny Miloslavsky [EMAIL PROTECTED] wrote on 10/05/2008 09:34:33 AM: Hi All Is there any possibility to set From-tag of INVITE request sent from SIPp as random length alpha-numeric string with possibility to include both BNF

Re: [Sipp-users] Why doesn´t SIPp re-send the ACK wh en it receive a lot of messages 200 OK?

2008-10-05 Thread Charles P Wright
SIPp should retransmit the ACK if the retransmitted 200 is identical. You should enable -trace_msg and -trace_calldebug and see what the logs tell you. Charles ZiLi0n [EMAIL PROTECTED] 10/05/2008 02:26 PM To sipp-users@lists.sourceforge.net cc Subject [Sipp-users] Why doesn´t SIPp

Re: [Sipp-users] implementing SIP proxy and redirect Servers

2008-10-03 Thread Charles P Wright
You can also use OpenSER for a SIP proxy/registrar. If you are particularly motivated, it think it would be possible to get SIPp to behave like these servers; but it is probably not worth the effort. Charles Jeff Wright [EMAIL PROTECTED] 10/03/2008 09:26 AM To amar mahmoud [EMAIL

Re: [Sipp-users] Call Rate Decreases with time

2008-09-26 Thread Charles P Wright
You can try -recv_timeout Ns. Charles Ricardo Fernandes [EMAIL PROTECTED] 09/26/2008 04:56 AM To sipp-users@lists.sourceforge.net, Charles P Wright/Watson/[EMAIL PROTECTED] cc Subject Call Rate Decreases with time Hello, I am facing a problem regarding the call rate option. I define

Re: [Sipp-users] Different port for remote side

2008-09-24 Thread Charles P Wright
SIPp should be able to receive and process the message from a different port. I would use a combination of packet capture and -trace_msg to make sure the packet arrives at SIPp. Charles Romain Gautier [EMAIL PROTECTED] wrote on 09/24/2008 04:37:54 AM: Hi, I am trying to use SIPp as an

Re: [Sipp-users] Issue faced with updating filed value of csv injection file

2008-09-24 Thread Charles P Wright
a workaround to this problem. Is there a way to induce a variable pause at the server side SIPp such that the the file execution of the server side resumes only after the media transfer gets completed. Regards, Madiha On Tue, Sep 23, 2008 at 4:49 PM, Charles P Wright [EMAIL PROTECTED] wrote: You can

Re: [Sipp-users] Different port for remote side

2008-09-24 Thread Charles P Wright
the TRYING in the errors log file: the TRYING cannot be mapped to a known SIPp call, although the Call-ID is correct. Should it be an encoding issue of my scenario file? Cdt Romain 2008/9/24 Charles P Wright [EMAIL PROTECTED] SIPp should be able to receive and process the message from

Re: [Sipp-users] Issue faced with updating filed value of csv injection file

2008-09-23 Thread Charles P Wright
You can not update the value of CSV fields after starting SIPp. Charles Madiha Shahid [EMAIL PROTECTED] 09/23/2008 03:02 AM To sipp-users@lists.sourceforge.net cc Subject [Sipp-users] Issue faced with updating filed value of csv injection file Hi all, Description: I am writing a

Re: [Sipp-users] Caller scenario sends out REGISTER packets without respecting -users or -l flag

2008-09-22 Thread Charles P Wright
There is no way to limit transactions or requests; only calls (either with -l or -users). If your call has only one concurrent transaction (probably the only way for SIPp to work correctly); then the number of calls is an upper bound on transactions. You can disable retransmissions with -nr

Re: [Sipp-users] SIP-I message format in sipp

2008-09-22 Thread Charles P Wright
This is applied as revision 536. It would be great if we had a nice string structure throughout the code so that we could handle non-null terminated strings both on send and receive for all types of messages; but this is a good start. Charles Andy Aicken [EMAIL PROTECTED] Sent by: [EMAIL

Re: [Sipp-users] Variables as integer

2008-09-17 Thread Charles P Wright
The only way right now is to use a regular expression to parse it out as a string. Charles mayamatakeshi [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 09/17/2008 12:37 PM To sipp-users sipp-users@lists.sourceforge.net cc Subject [Sipp-users] Variables as integer Hello, how can I

Re: [Sipp-users] Variables as integer

2008-09-17 Thread Charles P Wright
With recent trunk versions you can do: ereg ... search_in=var variable=foo / Charles mayamatakeshi [EMAIL PROTECTED] 09/17/2008 01:25 PM To Charles P Wright/Watson/[EMAIL PROTECTED] cc sipp-users sipp-users@lists.sourceforge.net, [EMAIL PROTECTED] Subject Re: [Sipp-users] Variables

Re: [Sipp-users] UDP destination port in server mode

2008-09-15 Thread Charles P Wright
Marc, If you can extract the port from the header, you can use the new, but as of yet undocumented setdest action: Something like: nop action assignstr assign_to=url value=[next_url] / ereg regexp=sip:(.*)@([0-9A-Za-z\.]+):([0-9]+);transport=([A-Z]+) search_in=var

Re: [Sipp-users] inserting timestamp of messages

2008-09-15 Thread Charles P Wright
You can use -trace_logs and the [timestamp] keyword inside of a log message=[timestamp] / action. Charles [EMAIL PROTECTED] wrote on 09/09/2008 09:01:44 PM: Hi, when using trace_msg options I can get the message with its timestamp, But I need to extract only the timestamp in a CVS file

Re: [Sipp-users] can SIPp execute shell command like echo in background mode?

2008-09-15 Thread Charles P Wright
I suspect your use of double quotes within the quoted string is causing the problem. Charles [EMAIL PROTECTED] wrote on 09/12/2008 05:51:24 AM: Hi all, I am not able to log the status of the test in the log file when sipp is running in the background mode. It is able to log the

Re: [Sipp-users] Arithmetic expression

2008-09-09 Thread Charles P Wright
'/ //THIS ONE IS NOT WORKING log message=' value of 6 is now [$6]'/ /action /recv From, Nazia Hussain See what people are saying about Windows Live. Check out featured posts. Check It Out![attachment sip_uas_test.xml deleted by Charles P Wright/Watson/IBM

Re: [Sipp-users] Error in Pause statement.

2008-09-09 Thread Charles P Wright
pause is not an action, it is a top-level element like recv Charles [EMAIL PROTECTED] wrote on 09/08/2008 10:13:08 PM: All, I'm using SIPp3.1. My SIPp is erroring at the following lines - can someone provide any guidance as to what the proper syntax should be? This xml file works okay

Re: [Sipp-users] RTP audio/video ports

2008-09-09 Thread Charles P Wright
Scott, I don't see a reason to have the fixed 2 port offset. I would be amenable to a patch if no one else objects. Charles Scott Oaks [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 09/02/2008 03:34 PM Please respond to [EMAIL PROTECTED] To sipp-users@lists.sourceforge.net cc Subject

Re: [Sipp-users] multi line header

2008-09-09 Thread Charles P Wright
Roman, You can try the following: Subject: this is a \x20multi-line: Which will include the space before multi-line:. Charles [EMAIL PROTECTED] wrote on 09/04/2008 10:37:06 AM: Hi , I am trying to make sipp to send message with the multi line header like that: Subject: this is

Re: [Sipp-users] RegExp: Finding nth occurence?

2008-08-29 Thread Charles P Wright
No. Charles [EMAIL PROTECTED] wrote on 08/29/2008 08:12:03 AM: Is there a way to find the nth occurance of a regexp in msg for example, I may need to find how many times the following match occurs ereg regexp=a=cparmin: search_in=msg assign_to=15/ Send instant messages to your

Re: [Sipp-users] string manipulation for variables in sipp

2008-08-22 Thread Charles P Wright
There is no string manipulation, you'll need to change your regular expression to exclude the . Charles [EMAIL PROTECTED] wrote on 08/22/2008 06:10:29 AM: Hi I'm experiencing the following problem. When I receive the INVITE message, I'm able to store the Contact header in a variable,

Re: [Sipp-users] Unexpected-message.

2008-08-22 Thread Charles P Wright
You should look at your error logs. Your system under test is likely generating error messages, indicating it is beyond its capacity. Charles Thekkedath, Sooraj (Sooraj) [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 08/22/2008 01:24 AM To sipp-users@lists.sourceforge.net cc Subject

Re: [Sipp-users] T.38 media type m=image

2008-08-19 Thread Charles P Wright
There is no support in SIPp right now. To add it you'll need to change call.cpp to support m=image instead of m=audio and m=video. Search for PAT_AUDIO and PAT_VIDEO in call.cpp. Charles Patrick Miccio [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 08/19/2008 08:29 AM To

Re: [Sipp-users] Some errors on the log

2008-08-19 Thread Charles P Wright
The watchdog error means that SIPp set a timer for 400ms in the future, but it took 538 ms for it to come around. If this happens often, it is an indication that your SIPp machine is overloaded. Charles [EMAIL PROTECTED] wrote on 08/19/2008 11:14:10 AM: hi, I am getting some errors on my

Re: [Sipp-users] T.38 media type m=image

2008-08-19 Thread Charles P Wright
This should be fixed in trunk. In earlier versions change char number[X] in get_remote_port_media to char number[7], where X 7. Charles [EMAIL PROTECTED] wrote on 08/19/2008 12:06:21 PM: hey everyone, looks like I found a related problem: I send this SDP info in my INVITE: m=image

Re: [Sipp-users] Some errors on the log

2008-08-19 Thread Charles P Wright
the threashold is 500ms at first. Regards, Nicholas SHI --- Qingdao, China 2008/8/19 Charles P Wright [EMAIL PROTECTED]: The watchdog error means that SIPp set a timer for 400ms in the future, but it took 538 ms for it to come around. If this happens often

Re: [Sipp-users] check_it

2008-08-18 Thread Charles P Wright
? Jeffrey Wright System Test Engineering Manager Aztek Networks, Inc. -Original Message- From: Charles P Wright [mailto:[EMAIL PROTECTED] Sent: Sat 8/16/2008 7:14 PM To: Jeff Wright Cc: Anonymous Incognito; sipp-users@lists.sourceforge.net; sipp- [EMAIL PROTECTED] Subject

Re: [Sipp-users] check_it

2008-08-16 Thread Charles P Wright
My best suggestion would be to assign the captured value to a variable, something like (not 100% sure on syntax, but this should sketch the plan for you); then strcmp it to an empty string (returns 0 if equal), and test on the strcmp return. recv ereg assign_to=server search_in=header

Re: [Sipp-users] problem in compiling SIPp using GSL

2008-08-14 Thread Charles P Wright
What Linux distribution are you using? On redhat based distributions you must have gsl-devel installed as well. Charles amar mahmoud [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 08/14/2008 04:32 PM To sipp-users@lists.sourceforge.net cc Subject [Sipp-users] problem in compiling SIPp

Re: [Sipp-users] UDP CHECKSUM ERROR with own UAS scenario

2008-07-30 Thread Charles P Wright
You can get the part between using a regular expression. Charles michael [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 07/30/2008 10:31 AM To sipp-users@lists.sourceforge.net cc Subject Re: [Sipp-users] UDP CHECKSUM ERROR with own UAS scenario Nevermind, problem solved. Pebkac, as

Re: [Sipp-users] Force source IP source Port at IP laye

2008-07-30 Thread Charles P Wright
No. If you want to spoof addresses it would be pretty hard to implement. If you just want to pick from one of your IP injection files, you could implement it without major code changes. Charles Cyrille OLIVIER [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 07/30/2008 10:40 AM To Ricardo

Re: [Sipp-users] Redirection functionality from single UAS scenario xml

2008-07-29 Thread Charles P Wright
new keywords/actions. Charles Evgeny Miloslavsky [EMAIL PROTECTED] 07/29/2008 09:45 AM To Charles P Wright/Watson/[EMAIL PROTECTED] cc Subject RE: [Sipp-users] Redirection functionality from single UAS scenario xml Because SIPp recognizes redirected invite as retransmission

Re: [Sipp-users] SIPP command not running

2008-07-29 Thread Charles P Wright
Your XML must have a [fieldN] keyword and is expecting an injection file. Charles [EMAIL PROTECTED] wrote on 07/29/2008 11:27:09 AM: Have anyone send this error msg ? [EMAIL PROTECTED]:~/sbc# sipp -sf uac_reg_sample.xml 10.88.225.187 - trace_msg -m 1 2008-07-29 11:19:25:918

Re: [Sipp-users] Variable in recv timeout

2008-07-24 Thread Charles P Wright
The timeout field does not accept a variable as input. Charles Ricardo Fernandes [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 07/24/2008 06:14 AM To sipp-users@lists.sourceforge.net cc Subject [Sipp-users] Variable in recv timeout Hello, How can i put a variable in the timeout field

Re: [Sipp-users] SIPP INFO and REFER Method

2008-07-21 Thread Charles P Wright
SIPp doesn't actually pay attention to the methods; so it doesn't support or not support any of them. Charles Jad Haddad [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 07/21/2008 08:37 AM To Hadriel Kaplan [EMAIL PROTECTED], sipp-users@lists.sourceforge.net cc Subject [Sipp-users] SIPP

Re: [Sipp-users] SIPp3.1 - scenario breaks whith exitcode 139

2008-07-14 Thread Charles P Wright
Technik Einführung Wolfgang Kanngießer Winterfeldtstraße 21, D-10781 Berlin -Ursprüngliche Nachricht- Von: Charles P Wright [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 9. Juli 2008 17:23 Wolfgang, I tried the scenario with the SVN trunk and did not get an error

Re: [Sipp-users] SIPp for Automation

2008-07-09 Thread Charles P Wright
If the scenarios require precise synchronization between all the elements for a single call I would suggest using the extended third party call control (3pcc) feature of SIPp. Although its name is 3pcc, really it is just a mechanism to send data between SIPp instances. Charles Naresh

Re: [Sipp-users] How to force SIPPp to use the port specified in the scenario?

2008-07-09 Thread Charles P Wright
Tomasz, Just sending a note to confirm what you've written; you've got it all correct. The only minor thing is that in the latest trunks there is a setdest action that will let you change the host/port to send to. Charles Tomasz Radziszewski [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED]

Re: [Sipp-users] SIPp3.1 - scenario breaks whith exitcode 139

2008-07-09 Thread Charles P Wright
Wolfgang, I tried the scenario with the SVN trunk and did not get an error. Charles Kanngiesser, Wolfgang [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 07/07/2008 07:07 AM To sipp-users@lists.sourceforge.net cc Subject [Sipp-users] SIPp3.1 - scenario breaks whith exitcode 139 Hi all,

Re: [Sipp-users] Patch for make on non-gnu systems

2008-07-09 Thread Charles P Wright
I've put this in the latest trunk. My mail reader or yours messed up the patch, if you can please send patches as MIME attachments. They are harder to read inline, but are easier to apply. Charles [EMAIL PROTECTED] wrote on 07/07/2008 06:18:27 PM: Hey guys, on my system make isn't GNU make

Re: [Sipp-users] Again : Can Sipp have multiple remote_ip acting as a Sip Client ?

2008-07-08 Thread Charles P Wright
file. In this url http://www.tech-invite.com/Ti-sip-service-1.html is a example of what i am trying to acomplish. Regards Ricardo Fernandes [attachment ScenarioHold.xml deleted by Charles P Wright/Watson/IBM

Re: [Sipp-users] Again : Can Sipp have multiple remote_ip acting as a Sip Client ?

2008-07-08 Thread Charles P Wright
You will need to download and compile the subversion trunk version. Charles Ricardo Fernandes [EMAIL PROTECTED] 07/08/2008 10:13 AM To Charles P Wright/Watson/[EMAIL PROTECTED] cc sipp-users@lists.sourceforge.net, [EMAIL PROTECTED] Subject Re: [Sipp-users] Again : Can Sipp have multiple

Re: [Sipp-users] How to cut SIP-URI from Contact header

2008-07-07 Thread Charles P Wright
Tomasz and Evgeny, I have encountered this problem as well. I think the latest trunk should respect the quotes, but svn is down so I can't tell you what version is the minimum. Charles Tomasz Radziszewski [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 07/07/2008 06:03 AM To

Re: [Sipp-users] AKAv1-MD5

2008-07-04 Thread Charles P Wright
You'll need a recent SIPp trunk version and to use the verifyauth action. It looks something like recv request=REGISTER / verifyauth assign_to=goodauth username=username password=password / /recv username and password can be any message substitution, and you can do branching based on

Re: [Sipp-users] Variable $5 is referenced 1 times!

2008-07-04 Thread Charles P Wright
The only referenced once check is there to prevent typos and other similar errors that would have SIPp load a scenario with a variable only used once (the theory being why do you need to read or write to a variable if you never read or write from it again, basically like an unused variable

Re: [Sipp-users] stat CSV log files mess up in Excel.

2008-07-01 Thread Charles P Wright
You can also use -stat_delimiter , on the command line. Charles Tu Le Van [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 07/01/2008 03:24 AM To 'Lucian Romi' [EMAIL PROTECTED], sipp-users@lists.sourceforge.net cc Subject Re: [Sipp-users] stat CSV log files mess up in Excel. Hi Romi,

Re: [Sipp-users] why i can't download the original xml file?

2008-07-01 Thread Charles P Wright
They don't seem to exist, but you can just do; ./sipp -sd [scenario] to print out one of the default scenarios. Charles Mike Li [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 07/01/2008 05:31 AM To sipp-users@lists.sourceforge.net cc Subject [Sipp-users] why i can't download the original

Re: [Sipp-users] How to do REGISTER and UAS(INVITE server) together.

2008-06-25 Thread Charles P Wright
properly. Regards, Itzik Harel. -Original Message- From: Charles P Wright [mailto:[EMAIL PROTECTED] Sent: Sunday, June 22, 2008 9:52 PM To: Itzik Harel Cc: Lucian Romi; sipp-users@lists.sourceforge.net; [EMAIL PROTECTED] Subject: Re: [Sipp-users] How to do REGISTER and UAS(INVITE

Re: [Sipp-users] How to do REGISTER and UAS(INVITE server) together.

2008-06-21 Thread Charles P Wright
You need to use separate scenarios. Charles Lucian Romi [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 06/20/2008 07:06 PM To sipp-users@lists.sourceforge.net cc Subject [Sipp-users] How to do REGISTER and UAS(INVITE server) together. Hi, I tried to create one scenario like this.

Re: [Sipp-users] How to set behavior for any received response except of 200 OK

2008-06-17 Thread Charles P Wright
id=_unexp.main / nop action error message=Got something aside from a 200 / /action /nop label id=end / Charles Evgeny Miloslavsky [EMAIL PROTECTED] 06/17/2008 02:57 AM To Charles P Wright/Watson/[EMAIL PROTECTED] cc Subject RE: [Sipp-users] How to set behavior

Re: [Sipp-users] How to set behavior for any received response except of 200 OK

2008-06-16 Thread Charles P Wright
SIPp won't exit but the call will fail. If you want SIPp to exit, you'll need to do a regular expression match and an action that includes something like error message=Got something other than 200 /. Charles Dhananjaya Reddy Eadala [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 06/16/2008

Re: [Sipp-users] Multiple User-Agents w/ RTP

2008-06-13 Thread Charles P Wright
You can look at the exit codes, which I believe should give you a pass/fail result. Charles Gomtesh Jain [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 06/13/2008 03:23 AM To sipp-users@lists.sourceforge.net cc Subject Re: [Sipp-users] Multiple User-Agents w/ RTP Hi All, I am

Re: [Sipp-users] Multiple User-Agents w/ RTP

2008-06-10 Thread Charles P Wright
I don't think SIPp currently supports this, but RTP is done with raw sockets so the modifications would not be terribly difficult for someone to do. Charles [EMAIL PROTECTED] wrote on 06/09/2008 06:43:42 PM: Hello, I've been able to emulate multiple user agents creating and destroying

Re: [Sipp-users] Display Scenario Name

2008-06-04 Thread Charles P Wright
You can add a nop with a display attribute like: nop display=String to Display / At the top of the scenario. Charles Naresh [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 06/04/2008 07:45 AM To sipp-users@lists.sourceforge.net cc Subject [Sipp-users] Display Scenario Name Hi, I am

Re: [Sipp-users] Problem with 3PCC Extended scenarios

2008-05-30 Thread Charles P Wright
affiliated entities.[attachment callGeneratorToPremiseSIPServer-2.sh deleted by Charles P Wright/Watson/IBM] [attachment slave.cfg deleted by Charles P Wright/Watson/IBM] [attachment slave-1.cfg deleted by Charles P Wright/Watson/IBM] [attachment slave-2.cfg deleted by Charles P Wright/Watson/IBM

Re: [Sipp-users] Double free or corruption in sipp

2008-05-28 Thread Charles P Wright
Can you repliate the bug? If so, please compile SIPp with -g support and provide the same backtrace. Also, if it is something simple to replicate with only SIPp please post the scenarios required to replicate it. Charles Gomtesh Jain [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED]

Re: [Sipp-users] (no subject)

2008-05-28 Thread Charles P Wright
For media support pcap is certainly required. I don't know what libnet is. I don't know where to get them for Solaris anymore, but sunfreeware.com may be a start. It used to be the place to get all the extra packages that you needed. Charles Monica Sam -X (monsam - WIPRO at Cisco)

Re: [Sipp-users] Sending requests from inital UAS

2008-05-28 Thread Charles P Wright
uas side should act as auc and send a request? Attached are my scenario sofar ( call setup but no BYE from B) Regards, // Andreas [attachment b_scenario.sipp.xml deleted by Charles P Wright/Watson/IBM

Re: [Sipp-users] Sending requests from inital UAS

2008-05-28 Thread Charles P Wright
I don't have any examples of that, but you should be able to get all of that with regular expressions. Charles Andreas Byström (Polystar T M) [EMAIL PROTECTED] 05/28/2008 08:20 AM To Charles P Wright/Watson/[EMAIL PROTECTED] cc sipp-users@lists.sourceforge.net sipp-users

Re: [Sipp-users] Registration Issue

2008-05-28 Thread Charles P Wright
:23 AM To Charles P Wright/Watson/[EMAIL PROTECTED] cc sipp-users@lists.sourceforge.net, [EMAIL PROTECTED] Subject Re: [Sipp-users] Registration Issue Charles, thanks for your answer-question, In fact, i don't want any failure, but i read in the log some registration failures

Re: [Sipp-users] Registration Issue

2008-05-28 Thread Charles P Wright
Martin, Why are you expecting failures? Charles Martin Ostrovsky [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 05/28/2008 09:17 AM To sipp-users@lists.sourceforge.net cc Subject [Sipp-users] Registration Issue Hi all, I'd need your help to understand this problem I am having: I

Re: [Sipp-users] 3.1 - scenarios don't work, no documentation, not packaged properly

2008-05-23 Thread Charles P Wright
get hold of the package containing it? Thanks, Michael -Original Message- From: Charles P Wright [mailto:[EMAIL PROTECTED] Sent: Thursday, May 22, 2008 3:39 PM To: Michael Lynch Cc: Srivastava, Anuj Kumar; sipp-users@lists.sourceforge.net; [EMAIL PROTECTED] Subject: RE: [Sipp-users] 3.1

  1   2   3   >