Re: changing a part of an HTTP request through data extracted from regex

2011-02-22 Thread zillakilla
In your 'Selecting_an_Alert' HTTP Request (where you POST) the value you have for wicket:interface:= selecting_an_alert you state this is a variable, so it should be:= ${selecting_an_alert} -- View this message in context:

Re: changing a part of an HTTP request through data extracted from regex

2011-02-22 Thread zillakilla
Hi, I had a 'quick' look at your jmx I think I fixed your issue: 'Selecting_an_Alert' HTTP Request- change the 'wicket:interface' VALUE to: :${AlertTableRowNo_matchNr}:contentPanel:alertList:alertTable:body:rows::${AlertCellRowNos_matchNr}::IBehaviorListener:0:-1 Change the 'random' VALUE

Re: changing a part of an HTTP request through data extracted from regex

2011-02-22 Thread zillakilla
Aha!, I think you need this then: wicket:interface=:${__V(AlertTableRowNo_${AlertTableRowNo_matchNr})}::contentPanel:alertList:alertTable:body:rows:${__V(AlertCellRowNos_${AlertCellRowNos_matchNr})}::IBehaviorListener:0:-1 I am not at work now, so I dont have jmeter, I am doing this from

Re: Problem using Jmeter with .Net project

2011-03-01 Thread zillakilla
without more info about what and how you are sending the parameters to login it's hard to help... however have you looked at Badboy? http://www.badboy.com.au/ You can record your login action, then 'export to jmeter' open the script in jmeter and have a look at how and what parameters are sent

Re: How to take users dynamically from csv?

2011-03-04 Thread zillakilla
Try using Stepping Thread Group -- View this message in context: http://jmeter.512774.n5.nabble.com/How-to-take-users-dynamically-from-csv-tp3409115p3409696.html Sent from the JMeter - User mailing list archive at Nabble.com.

Re: how can i get this kind of users

2011-03-15 Thread zillakilla
Create seperate thread groups, 1 for each scenario -- View this message in context: http://jmeter.512774.n5.nabble.com/how-can-i-get-this-kind-of-users-tp3638024p3679022.html Sent from the JMeter - User mailing list archive at Nabble.com.

Re: Regular expression Extractor - Help

2011-03-21 Thread zillakilla
respondentid = '([a-z0-9]*?)' -- View this message in context: http://jmeter.512774.n5.nabble.com/Regular-expression-Extractor-Help-tp4209375p4221859.html Sent from the JMeter - User mailing list archive at Nabble.com. - To

Transaction time for successfull responses

2011-04-06 Thread zillakilla
Hi, could anyone help with this request?: I have a jmeter test plan which triggers an email, then 'waits' (in a loop) for 5 minutes max for the email to arrive. If the email does NOT arrive after 5 minutes, the loop is exited and the test starts again (a new email is triggered) I am using the

Re: problem with regular expression

2011-04-07 Thread zillakilla
Hi, try this: EntityId=([\d]*)[^]*documentId=([\d]*)[^\[]*(.*?)Doc It get all matches in 3 seperate groups! Zilla -- View this message in context: http://jmeter.512774.n5.nabble.com/problem-with-regular-expression-tp4287850p4287882.html Sent from the JMeter - User mailing list archive at

Re: Transaction time for successfull responses

2011-04-07 Thread zillakilla
Thx Sebb!! I put a counter to track the email requests and added it to the end of the transaction controller name: how long for email to arrive TC - ${emailCounter} this way I have an independant time for each email Zilla -- View this message in context:

Re: problem with regular expression

2011-04-11 Thread zillakilla
In order to get the LAST documentId... this is the way I would do it: 1st put regEx extractor [as a child of HTTP Sampler] with these settings to check 'how many document IDs are returned': Ref name = totalMatches regEx = documentId=([\d]*) Template = $1$ Match No. = -1 Default value = NOT_FOUND

Re: Saving sampler result, request and response in View Result Tree

2011-04-11 Thread zillakilla
try adding this to your sampler names: [Date=${__time(dd-MM-,today)}] [Time=${__time(hh:mm,today)}] :) Zilla -- View this message in context: http://jmeter.512774.n5.nabble.com/Saving-sampler-result-request-and-response-in-View-Result-Tree-tp3343661p4295491.html Sent from the JMeter -

Re: JMeter counter

2011-04-23 Thread zillakilla
set the max value of the counter to: ${VARIABLE_matchNr} zilla -- View this message in context: http://jmeter.512774.n5.nabble.com/JMeter-counter-tp4333626p4334450.html Sent from the JMeter - User mailing list archive at Nabble.com.

Re: JMeter counter

2011-04-26 Thread zillakilla
Can you change the WHILE controller to a LOOP controller? then set the Loop Count of the LOOP controller to ${VARIABLE_matchNr} So your test plan look like this: ++Thread +HTTP Request -Regular Expression Extractor (stored as VARIABLE) +LOOP Controller [Loop count =

Re: JMeter counter

2011-04-27 Thread zillakilla
Try moving the counter so it is BEFORE the loop controller (i cannot test this as I am not at work, this is from memory) HTH zilla -- View this message in context: http://jmeter.512774.n5.nabble.com/JMeter-counter-tp4333626p4344713.html Sent from the JMeter - User mailing list archive at

Re: CSV Random data selection

2011-04-27 Thread zillakilla
You could save the data as many csv files eg test1.csv would contain the value a.com ... test999.csv would contain the value y.com Then you could read the csv using the RANDOM function (I do this with the beanshell preprocessor) Not very elegant as you would have many csv files, but it

Re: UDP

2011-04-29 Thread zillakilla
http://code.google.com/p/jmeter-plugins/-- View this message in context: http://jmeter.512774.n5.nabble.com/UDP-tp4358966p4359059.html Sent from the JMeter - User mailing list archive at Nabble.com. - To unsubscribe, e-mail:

Re: Regular expression extractor using escape character '\'

2011-05-09 Thread zillakilla
Your regEx 1 works like this: meta http-equiv=refresh content=5; url=http://qa-2sc-usc\.2tor\.com/course/view\.php\?id=94amp;modid=(\d*)amp;modtype=assignment / Your regEx 2 works like this: lt;!\[CDATA\[

Re: Loop over xpath return variable

2011-05-09 Thread zillakilla
did you use: $1$ as the template in your regEx extractor? Zilla -- View this message in context: http://jmeter.512774.n5.nabble.com/Loop-over-xpath-return-variable-tp4382996p4383742.html Sent from the JMeter - User mailing list archive at Nabble.com.

Re: Regular expression extractor using escape character '\'

2011-05-10 Thread zillakilla
For regEx 2 could you use?: meta http-equiv=refresh content=5; url=http://qa-2sc-usc\.2tor\.com/course/view\.php\?id=94amp;modid=(.+?) or even just: modid=(.+?) (btw all the regExs tried work for me maybe your response data is slightly different?... i.e modtype=assignment) Zilla -- View

Re: Jmeter + PERFORMANCE OF DATABASE

2011-05-16 Thread zillakilla
This may help: (but to be honest... your question is too vague) http://code.google.com/p/jmeter-plugins/wiki/PerfMon -- View this message in context: http://jmeter.512774.n5.nabble.com/Jmeter-PERFORMANCE-OF-DATABASE-tp4400156p4400425.html Sent from the JMeter - User mailing list archive at

Re: List of Technologies that are and are not supported by JMeter

2011-05-18 Thread zillakilla
OK, list them -- View this message in context: http://jmeter.512774.n5.nabble.com/List-of-Technologies-that-are-and-are-not-supported-by-JMeter-tp4406019p4406053.html Sent from the JMeter - User mailing list archive at Nabble.com.

Re: Can I send a . in a URL?

2011-05-19 Thread zillakilla
Try this: /customer/email/test@example\.com ZK -- View this message in context: http://jmeter.512774.n5.nabble.com/Can-I-send-a-in-a-URL-tp4409448p4409513.html Sent from the JMeter - User mailing list archive at Nabble.com. -

Re: Can I send a . in a URL?

2011-05-20 Thread zillakilla
Try this: /customer/email/'t...@example.com' ZK -- View this message in context: http://jmeter.512774.n5.nabble.com/Can-I-send-a-in-a-URL-tp4409448p4411935.html Sent from the JMeter - User mailing list archive at Nabble.com.

Re: Timers, Think Time between requests, and Best Practices

2011-05-20 Thread zillakilla
I think there are many ways of doing what you need but, 1 simple way is to use a ConstantThroughputTimer instead of the GaussianRandomTimer This can assist with think time and also to calculate number of users Knowing what the expected throughput vs actual throughput is also a useful metric

Re: Setting login string?

2011-05-25 Thread zillakilla
did you look at the HTTP Authorization Manager? (Config element) ZK -- View this message in context: http://jmeter.512774.n5.nabble.com/Setting-login-string-tp4425084p4425568.html Sent from the JMeter - User mailing list archive at Nabble.com.

Re: Colon in string concatenation inserts a space

2011-06-06 Thread zillakilla
Does this give you extra (unwanted) space?: String authString = Basic 2: + ${newDate2} + : + ${timehash}; vars.put(authorizationString,authString); zK -- View this message in context: http://jmeter.512774.n5.nabble.com/Colon-in-string-concatenation-inserts-a-space-tp4457644p4457989.html

Re: Colon in string concatenation inserts a space

2011-06-06 Thread zillakilla
I couldn't reproduce your issue, so I hard coded the problem!! This is the solution I came up with (maybe it helps?): String authString = Basic 2 + : + ${__jexl(vars.get(newDate2).replace( \,))} + : + ${timehash}; vars.put(authorizationString,authString); zK -- View this message in context:

Re: regex to mach a json

2011-06-08 Thread zillakilla
\[(.*)\] zK -- View this message in context: http://jmeter.512774.n5.nabble.com/regex-to-mach-a-json-tp4469591p4469959.html Sent from the JMeter - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: