constant trhougput on Transaction Controllers.

2010-11-25 Thread Ivan Rodriguez
Hi! I've made a script in witch all requests sent are grouped by Transaction Controllers. Each Transaction Controller represents an user "click". Now I need to controll the amount of Througput an user generates in terms of clicks( instead of sent requests). Is there any way to achieve this? I

SV: Sequential threadgroups.

2010-11-12 Thread Ivan Rodriguez
, Ragini Thakur -Original Message- From: Ivan Rodriguez [mailto:ivan.rodrig...@cybercomgroup.com] Sent: Friday, November 12, 2010 4:43 PM To: JMeter Users List Subject: Sequential threadgroups. Hello! I'm wondering how do I make several Threadgroups run sequentially. So that only o

Sequential threadgroups.

2010-11-12 Thread Ivan Rodriguez
Hello! I'm wondering how do I make several Threadgroups run sequentially. So that only one is running at any given moment. br Ivan - To unsubscribe, e-mail: jmeter-user-unsubscr...@jakarta.apache.org For additional commands, e-

SV: Parallel Requests / Nested ThreadGroups

2010-11-12 Thread Ivan Rodriguez
Hello! I'm wondering how do I make several Threadgroups run sequentially. So that only one is running at any given moment. br Ivan - To unsubscribe, e-mail: jmeter-user-unsubscr...@jakarta.apache.org For additional commands, e-

How to group the ramp up.

2010-11-03 Thread Ivan Rodriguez
Hi! I need to simulate the following scenario: Start the script with 5 users. wait 1 minute. Add 5 more users wait another minute Add 5 minute and so on so on. Is this possible to simulate with JMeter? I've xperimented with the ramp up variable with no result. THAnks in advance for all sugg

RE: Loop through CSV

2008-08-08 Thread Ivan Rodriguez
I don't think I quite understand what you are asking With a CVS file you have a set of lines and in each line you have a set of variables. Each line will be used once per thread. So making enough threads will use the whole file. The CVS Data Set Config will do all of this almost by itself.

RE: Out of memory error

2008-07-28 Thread Ivan Rodriguez
I have also encounter this problem. It was more notable when using beanshell but it still happened otherwise so I figured it has to do with the Java. I managed to work around the problem by increasing the amount of available memory for Java. But the problem is still there even thou less freqvent

RE: TestCompiler throws NPE - how to debug?

2008-07-02 Thread Ivan Rodriguez
EMAIL PROTECTED] Sent: den 2 juli 2008 12:13 To: JMeter Users List Subject: Re: TestCompiler throws NPE - how to debug? Ivan Rodriguez wrote: > You could try to disable one element at the time and run the script. > When the Exception disappear then you will know witch element is causing it. &g

RE: TestCompiler throws NPE - how to debug?

2008-07-02 Thread Ivan Rodriguez
plan, but I don't know how to find out what... # r Ivan Rodriguez wrote: > java.lang.NullPointerException is the same as "Whatever you are trying to use > doesn't exist". > > Hard to tell without the script at hand. > -Original Message- > From

RE: TestCompiler throws NPE - how to debug?

2008-07-02 Thread Ivan Rodriguez
java.lang.NullPointerException is the same as "Whatever you are trying to use doesn't exist". Hard to tell without the script at hand. -Original Message- From: Ronan Klyne [mailto:[EMAIL PROTECTED] Sent: den 2 juli 2008 10:39 To: JMeter Users List Subject: TestCompiler throws NPE - how to

RE: Need to simulate 500 different users/ how to read them from file and parameterize the script?

2008-07-02 Thread Ivan Rodriguez
The answer to your prayers are "CVS Data Set Config". A small explanation for the fields needed Filename: the name of the file where the values are. File encoding: Never used it (don't know what it does) so I always leave it blank. Variables Names: Here you write the names of the variables

How do I turn a failed request green?

2008-06-10 Thread Ivan Rodriguez
My Script makes a request that generates 3 additional requests. These I can see with the result tree Listener. The problem is that the last of those three requests always fails, but the functionality works most of the time whether the last request fails or not. With help of the response on t

RE: How to change Http Sampler file sent during run

2008-06-07 Thread Ivan Rodriguez
This sounds possible with a "CSV Data Set Config". Basicly you put all the values can have in a file and JMeter will read this file one line per thread putting the line as the value of . How to set up a "CSV Data Set Config" is pretty well explained on the manual. ivan -Original Message

How do I know the request has been sent out?

2008-05-30 Thread Ivan Rodriguez
Hi! I have made a script witch makes 3 requests. The problem is that sometimes the third request doesn't always show up on the view result tree listener or on the aggregate report. My question is how can I see that the request has been sent out? I'm assuming that the above mentioned listeners o

Typed variable declaration : Object constructor

2008-05-22 Thread Ivan Rodriguez
Does anyone one know why the following beanShell code: ===Code Start=== import javax.naming.Context; import javax.naming.InitialContext; System.out.println("START"); Hashtable env = new Hashtable(); env.put("java.naming.factory.initial","org.jnp.interfaces.NamingContextFactory"); env.put("java.

RE: Reading from a file

2008-05-06 Thread Ivan Rodriguez
I don't understand, do you have a file with complete urls? Or just paths? If you have a file with a set of urls like : http://www.google.com http://www.altavista.com http://www.anotherSite.com then you edit your "CSV Data Set Config" so that the field "Variable names" contains the word "URL". T