Re: generate variable from file

2011-10-31 Thread sebb
On 27 October 2011 21:58, Tonimenen wrote: > Sebb, > > Have you been able to see why _StringFromFile misses the first input of the > file ? Am I doing anything wrong in my jmx ? No, because I don't know what your JMX looks like. Don't send it to the list; upload it somewhere public and post the

Re: generate variable from file

2011-10-27 Thread Tonimenen
Sebb, Have you been able to see why _StringFromFile misses the first input of the file ? Am I doing anything wrong in my jmx ? Thanks in advance, Toni Enviado desde mi iPad El 25/10/2011, a las 20:28, Toni Menendez Lopez escribió: > Sebb, > > I don´t know why when I read the url from my f

Re: generate variable from file

2011-10-25 Thread Toni Menendez Lopez
Sebb, I don´t know why when I read the url from my file, I am not able to start reading from the 1st line in the file. It is like __StringFromFile always read one line at the stat of the the Jmeter Scenario and after loose my 1st line in the file. Look I send you jmx of jmeter 2.5. My file is :

Re: generate variable from file

2011-10-25 Thread Toni Menendez Lopez
Solved with __StringFromFile(). Now I need to do the same for a long number of files and inputs in a file. I don´t know if reading from file each request can download dramatically the performance of Jmeter, this is why I want to load all values in memory. For each request I am going to read the U

Re: generate variable from file

2011-10-25 Thread Toni Menendez Lopez
This is just the beginning of the Scenario... But after I have not only 1 file, I have like 5 files with 10 inputs each one. So lot of reads from disk... If I have all in memory I suspect all will be faster! Toni. 2011/10/25 sebb > On 25 October 2011 11:43, Toni Menendez Lopez wrote: > > The

Re: generate variable from file

2011-10-25 Thread sebb
On 25 October 2011 11:43, Toni Menendez Lopez wrote: > The thing is that I want to execute a loop in the same thread with all > values inside this file ( same as if I have done a regex ), with "CSV Data > Set Config" the varaible it is not modified until I restart a new thread. So why mention fil

Re: generate variable from file

2011-10-25 Thread Toni Menendez Lopez
The thing is that I want to execute a loop in the same thread with all values inside this file ( same as if I have done a regex ), with "CSV Data Set Config" the varaible it is not modified until I restart a new thread. This is my scenario -ThreadGroup -While not end of file -- request with url i

Re: generate variable from file

2011-10-25 Thread sebb
On 25 October 2011 10:55, Toni Menendez Lopez wrote: > Hello all, > > I send this just to know if someone has done something similar to the next, > > I have 3  files with 20 inputs, and these inputs are used in my jmeter > Scenario, and in order to avoid I/O with high Load I want to save all input

generate variable from file

2011-10-25 Thread Toni Menendez Lopez
Hello all, I send this just to know if someone has done something similar to the next, I have 3 files with 20 inputs, and these inputs are used in my jmeter Scenario, and in order to avoid I/O with high Load I want to save all input in a variable in memory to use later in a foreach. Do you know