how to process params after beeing read from file

2009-05-18 Thread Reuben A Christie
I have csv file with all parameters that I want to use in my weburl test. I am using CSV data set config for reading these parameters in, and making them available in the HTTP Request Sampler. Now the problem is following : before I use this parameter in making HTTP Request, I want to

Re: how to process params after beeing read from file

2009-05-18 Thread Deepak Shetty
Hi add a beanshell preprocessor to your http sample and use a String value = vars.get(YOURVARNAME); //manipulate the string vars.put(YOURVARNAME, value); regards deepak On Mon, May 18, 2009 at 2:50 PM, Reuben A Christie chris...@knewco.comwrote: I have csv file with all parameters that I want