Re: read URL's from file

2007-01-10 Thread sebb
Set the CSV Dataset "Recycle on EOF" to false, and check for the string in one of the variables. On 09/01/07, Alexander Wallace <[EMAIL PROTECTED]> wrote: I guess a while loop should do the trick too once i know how to tell if the EOF has been reached. On Jan 9, 2007, at 4:18 PM, chris wrote:

Re: read URL's from file

2007-01-09 Thread Alexander Wallace
I guess a while loop should do the trick too once i know how to tell if the EOF has been reached. On Jan 9, 2007, at 4:18 PM, chris wrote: Will give it a try, thnx a lot. - To unsubscribe, e-mail: [EMAIL PROTECTED] For ad

Re: read URL's from file

2007-01-09 Thread chris
Will give it a try, thnx a lot. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: read URL's from file

2007-01-09 Thread Alexander Wallace
I think this worked, and it was a lot easier: 1 added a loop controller and set the loop count to the line count of my file (maybe that can be set dynamically too), then added the sampler and a csv dataset reader to the loop controller, it seems to do exactly what i want! Should do the tric

Re: read URL's from file

2007-01-09 Thread Alexander Wallace
Probably, tho I'm thingking that using the ${_CSVRead(c:/BOF/abcd.csv, 0)} (if it is still valid as I'm only reading some docs) in conjuction with ${_CSVRead(c:/BOF/abcd.csv,next())}, all this in a loop of some sort, may do the trick ... I'll see if i can make it do it in a bit... On Jan 9

Re: read URL's from file

2007-01-09 Thread chris
This indeed is the exact situation. Maybe it can be solved by using BeanShell scripting? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: read URL's from file

2007-01-09 Thread Alexander Wallace
Sorry, I don't have the answer, but It sounds exactly like what i need to do, except with jdbc calls... To make sure: You have one single HTTP sampler and want to grab the url from a file, have that sampler hit all the urls in the file, but have only one thread in your test So that if y

read URL's from file

2007-01-09 Thread chris
Hi all, I have a big file with URL's that I would like Jmeter to request one by one. If I have 1 thread and a loop count of 1 it should go over all the URL's from the file. Is this possible and any ideas on how this can be done? A simple example would be great. Thnx in advance, Chris ---