Re: IfController Error

2010-10-27 Thread Felix Frank
Hi, disable half of your If-Controllers. If your plan works then, the faulty one is among the disabled, if not, it's among the others. Repeat recursively. On 10/27/2010 06:28 PM, Derry, Stanton wrote: > The following error is happening when I run my script. I have a number > of "If Controllers"

Re: Parameter file from file instead of hard coding

2010-10-27 Thread Deepak Shetty
Im not sure , print out your variables(using debug sampler before your request) and see if your values are changing correctly , if the variables change values but the authorization manager didnt then it might be a bug (or feature) of the authorization manager - the documentation only states per th

RE: Parameter file from file instead of hard coding

2010-10-27 Thread bharatraj viswamani
If i do it for 2 iterations, i see the same user taken from the text file. Do i need to update anything on http authorization manager? > Date: Wed, 27 Oct 2010 12:08:41 -0700 > Subject: Re: Parameter file from file instead of hard coding > From: shet...@gmail.com > To: jmeter-user@jakarta.apache

Re: Parameter file from file instead of hard coding

2010-10-27 Thread Deepak Shetty
from the manual http://jakarta.apache.org/jmeter/usermanual/component_reference.html#HTTP_Authorization_Manager "If you want to use different usernames/passwords for different threads, you can use variables. These can be set up using a CSV Data Set Config Element (for example). " regards deepak

Parameter file from file instead of hard coding

2010-10-27 Thread bharatraj viswamani
Using jmeter and http authorization manager, it is possible to give the username to be supplied from a file instead of hard coding?

Re: Jmeter and Webdav

2010-10-27 Thread Carl Shaulis
I have never used WebDav, but I believe it uses http protocols. Have you tried using the proxy or Bad Boy to record a set of actions? Good luck, Carl On 10/27/10 7:48 AM, "Hanspeter Haenni" wrote: > Hi > > I would like to test a WebDAV server product with Jmeter. > I already googled around

Jmeter and Webdav

2010-10-27 Thread Hanspeter Haenni
Hi I would like to test a WebDAV server product with Jmeter. I already googled around but till now I didn't find a description or a plugin. So, my question is, can I test WebDAV services with JMeter? Is there any plugin for Jmeter? Many thanks in advance !

RE: Response code 302 - Moved Temporarily

2010-10-27 Thread Jain, Kapil
Hi Shiva, Yes I can see response code 302 for 15 users out of 25 users so 10/25 users is working fine but for remaining 15 users getting response code 302. Any advice on this. Regards KAPIL -Original Message- From: Sivaprasad Chintam [mailto:siva.sri...@gmail.com] Sent: 27 October 201

Re: regular expression extractor long page

2010-10-27 Thread Michele Mase'
Tx a lot for the help, expecially for "black gaff" that focused the problem! Michele Masè On Wed, Oct 27, 2010 at 9:24 AM, Felix Frank wrote: > Hi, > > black gaffer said that quite early yesterday, so cheers to him, and I'm > glad you finally came around ;) > > Regards, > Felix > > On 10/27/201

Re: regular expression extractor long page

2010-10-27 Thread Felix Frank
Hi, black gaffer said that quite early yesterday, so cheers to him, and I'm glad you finally came around ;) Regards, Felix On 10/27/2010 09:22 AM, Michele Mase' wrote: > Thanx a lot! > The trick was: > Remeber to group the regex into variable using the parethesis > > ([0-9]{1,6}) did the work!

Re: regular expression extractor long page

2010-10-27 Thread Michele Mase'
Thanx a lot! The trick was: Remeber to group the regex into variable using the parethesis ([0-9]{1,6}) did the work! On Wed, Oct 27, 2010 at 8:15 AM, wrote: > > Tested with JDK regexp with this expression : > ([0-9]{1,6}) > The result is in group[1] > > Gives all groups for every pattern matchin