You havent actually provided enough information and there are multiple things
a. Since your parameters arent fixed (var1 , var2) you probably need the ability to dynamically add these values to the HTTP request object - e.g. http://theworkaholic.blogspot.com/2010/03/dynamic-parameters-in-jmeter.html Similarly you could vary the URL b. For the Get and POST bits you could probably just use two different HTTP Samplers with an IF controller c. You could probably model your data as a CSV file - you might either preprocess the file into a friendlier format or you can use your existing data and parse it programatically. You can also generate the CSV from your database as part of your test as a setup element. The volume of the database is not that relevant. Whats relevant however is however the degree of concurrency you wish to introduce and whether you have a dependency between URLs or not So if you have say 10 url's that you wget - then what exactly do you want to do - Say you have to simulate 5 users concurrently then do each of the 5 users hit each of the 10 urls? Does each user pick up the next available URL (which is a problem if your urls are related to each other or a session is needed)? The concurrency will determine whether you need to distribute your test or not and how to distribute it. regards deepak On Fri, May 10, 2013 at 3:28 AM, Newbie <[email protected]> wrote: > Hi every one, > > I'm new to Jmeter and trying to use Jmeter for my thesis test. I have the > following questions that I would be grateful if you could help me: > I have some web applications that I want to feed them some data and see > their reaction. I have a dataset that the data are in two forms: > wget --post-data "var1=value1&var2=value2&..." http://.../page.jsp > wget http://.../page.jsp?var1=value1&var2=value2&... > > 1.The database is huge do I have to feed all the parameter values to the > related pages or is there an easier way to do that? > > 2. I have heard that we can see the pages in Jmeter just as we able to see > them in a browser. Is that right? How can this happen? > > Regards > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > >
