Re: HTTP Request vs. HTTP Request HTTPClient

2010-11-30 Thread Adrian Speteanu
In version 2.4 you have one very useful difference in HTTP Request HTTP Client : IP spoofing. On Mon, Nov 29, 2010 at 11:52 PM, Rob Schroder r...@manilla.com wrote: I have not. And, apologies for not doing so before posting the question! Thanks for the pointer. On 11/29/10 12:36 PM, sebb

Re: REGEX grouping issue

2010-11-30 Thread Michele Mase'
Ok it works for all the option value; the problem is that there are other option values later in the html page that I don't want to capture. What I need to capture are all the numbers (in my particular case between 1 and 20, but the html page may vary, so the numbers could be 10, 14 and so on),

Re: REGEX grouping issue

2010-11-30 Thread Deepak Shetty
a)should be easier to just use an XPATH extractor //sele...@name=VB_idCprel]/option/@value You would however need to generate a random number to select a value from this b. You can also use a regex to extract out the select you are interested in and another regex to extract out the option values

Re: Running set ratio of requests

2010-11-30 Thread Deepak Shetty
Hi to answer the first part - it might be better to do this more declaratively. You would need to combine the Constant Throughput Timer and the Constant Throughput Controller http://jakarta.apache.org/jmeter/usermanual/component_reference.html#Throughput_Controller Then you want 11 requests per

Cannot get Summary Report or View Results Tree without Debug Sampler

2010-11-30 Thread Sean Berry
As requested (and as I assumed) here is the second part of my original question in a separate thread. Currently, I am running a server on 7 machines. I have a python script that port scans all local IPs for 1099. The python process then gathers the output to create a report. The output

Re: Running set ratio of requests

2010-11-30 Thread Sean Berry
On Nov 30, 2010, at 9:52 AM, Deepak Shetty wrote: Hi to answer the first part - it might be better to do this more declaratively. You would need to combine the Constant Throughput Timer and the Constant Throughput Controller

Re: Cannot get Summary Report or View Results Tree without Debug Sampler

2010-11-30 Thread sebb
On 30 November 2010 18:25, Sean Berry sbe...@2advanced.com wrote: As requested (and as I assumed) here is the second part of my original question in a separate thread. Currently, I am running a server on 7 machines.  I have a python script that port scans all local IPs for 1099.  The python

Re: Cannot get Summary Report or View Results Tree without Debug Sampler

2010-11-30 Thread Deepak Shetty
Your test is very non standard looking (for e.g. I have never seen a pre processor outside a test plan I suppose it means it gets executed for everything under the test plan i.e. multiple times , probably not what you want) - you usually put this as a child of the sampler (the one before which u

Listeners with the Module Controller

2010-11-30 Thread black gaff
Greetings, I have a listener (Aggregate Report) as a child to a Module controller. On run, the listener doesn't show any results, although the controller and requests are running (as verified by a listener at the Thread Group Level). I've noticed the listener will work if it's a SIBLING to the

Problem with Regular Expression Extractor

2010-11-30 Thread Rob Schroder
Hi, I'm trying to use the Regular Expression Extractor. I've verified that I can use it to parse out simple text. But, when I try to parse the following string: 6yuQXuFV5rx2tE5/QL0V9jclw0HnWK+4madV9uAwOsg= Form this HTML snippet: meta name=csrf-param content=authenticity_token/ meta

Re: Problem with Regular Expression Extractor

2010-11-30 Thread SanderW
Double quotes are special characters. They need to be escaped. (?=\csrf-token\ content=\).*(?=\) -- View this message in context: http://jmeter.512774.n5.nabble.com/Problem-with-Regular-Expression-Extractor-tp3287090p3287284.html Sent from the JMeter - User mailing list archive at Nabble.com.

Re: Problem with Regular Expression Extractor

2010-11-30 Thread Milamber
Hello, Regexp can be testing directly on JMeter in View Results Tree with Regexp tester view (combo list). JMeter use ORO as regexp engine. Try this : csrf-token content=([^]+) Milamber Le 01/12/2010 01:51, Rob Schroder a ecrit : Hi, I'm trying to use the Regular Expression Extractor.