Re: Invalid XML characters

2009-08-04 Thread Pieter Ennes
Hello sebb, On 04-08-09 00:37, sebb wrote: On 04/08/2009, Pieter Ennespie...@watchmouse.com wrote: Hi, I have some weird binary data POSTed in a HTTP request, resulting in this XML in the .jmx: stringProp name=Argument.value3#x;0#x;172#x; [...] Many XML parsers fail on

Re: error while recording scenarios using proxy server

2009-08-04 Thread Pramod_bambore
Hi, Try to see if they are setting any session variable if so u need to capture it and send it each time. You can use regular expression extractor for it. Also check if there are any dynamic value generated which they are using in next request, you need to handle that also. sudheer reddy wrote:

checking the database for unique number created using random variable

2009-08-04 Thread sudheer reddy
Hi All Am using jmeter for functional testing of a scenario. I have to assign a unique number to a http request. for this i have associated a random variable to create a number. the issue now is if the number already exists in database it will not allow the thread to complete the request.

Re: JDBC sampler overhead and the number of records returned

2009-08-04 Thread welp
Thanks! However, I could think of limiting the JDBC Sampler resultset looping to 500 records (limiting the SQL itself is not possible since some Query Optimizer know to take advantage from this and choose an unadequate execution plan). I could live with checking the first 500 records for example

Re: checking the database for unique number created using random variable

2009-08-04 Thread sebb
On 04/08/2009, sudheer reddy gsudheer...@gmail.com wrote: Hi All Am using jmeter for functional testing of a scenario. I have to assign a unique number to a http request. for this i have associated a random variable to create a number. the issue now is if the number already exists

Re: JDBC sampler overhead and the number of records returned

2009-08-04 Thread sebb
On 04/08/2009, welp peter.wel...@trivadis.com wrote: Thanks! However, I could think of limiting the JDBC Sampler resultset looping to 500 records (limiting the SQL itself is not possible since some Query Optimizer know to take advantage from this and choose an unadequate execution plan).

Re: JDBC sampler overhead and the number of records returned

2009-08-04 Thread welp
sebb-2-2 wrote: On 04/08/2009, welp peter.wel...@trivadis.com wrote: Thanks! However, I could think of limiting the JDBC Sampler resultset looping to 500 records (limiting the SQL itself is not possible since some Query Optimizer know to take advantage from this and choose an

lognotate and log rollover at intervals

2009-08-04 Thread Adrian Speteanu
Hi guys, I am trying all sorts of methods to generate better logs and better ways to interpret the data obtained. In jmeter.properties, there is this very useful piece of information: # If the filename contains paired single-quotes, then the name is processed # as a SimpleDateFormat format

Re: lognotate and log rollover at intervals

2009-08-04 Thread sebb
On 04/08/2009, Adrian Speteanu asp.ad...@gmail.com wrote: Hi guys, I am trying all sorts of methods to generate better logs and better ways to interpret the data obtained. In jmeter.properties, there is this very useful piece of information: # If the filename contains paired

Re: checking the database for unique number created using random variable

2009-08-04 Thread sudheer reddy
Hi Sebb Thanks for your reply. I have tried in different way but for completing the the threads it is taking long time. let me share how i have done it. in the thread group i have added a random variable and filled the values in it declared variable name as X. i have passed the variable

Re: checking the database for unique number created using random variable

2009-08-04 Thread sebb
On 04/08/2009, sudheer reddy gsudheer...@gmail.com wrote: Hi Sebb Thanks for your reply. I have tried in different way but for completing the the threads it is taking long time. let me share how i have done it. in the thread group i have added a random variable and filled the values

Re: evaluate variables

2009-08-04 Thread sebb
On 21/07/2009, manbeing mycarqu...@gmail.com wrote: I have some difficulties to evaluate variables either in property file or jmeter test case. Can someone help me out? In User.Properties file: Num=1 Address=URL${num}.go.com The above are both properties, not variables. Jmeter is

remote testing and POST data

2009-08-04 Thread Claude Vedovini
Hi all, I managed to create a test plan using the jmeter proxy. Then I setup several servers to act as jmeter slaves and I setup a master My test plan and associated data (csv and .binary) are on the master and when I use the master to launch a local session everything works fine. However, when

Re: remote testing and POST data

2009-08-04 Thread Deepak Shetty
http://markmail.org/message/xdhu5n5xxp5qt3g6 Summary :Jmeter doesnt automatically copy the related files to all the servers you need to do this yourself or use some kind of shared drive between all the machines running jmeter regards deepak On Tue, Aug 4, 2009 at 10:03 AM, Claude Vedovini

Re: testing form upload performance

2009-08-04 Thread Tony Lotts
Duplicate the HTTP traffic that the app generates, in JMeter. Use the HTTP Request Sampler, or HTTP Request HTTP Client Sampler. If you do not have a spec of the HTTP POST that the app sends, use a packet sniffer such as Wireshark to analyze the HTTP traffic generated by the app. On Mon, Aug 3,

RE: testing form upload performance

2009-08-04 Thread Viswanathan Arunachalam
You can also download Live HTTP headers http://livehttpheaders.mozdev.org/installation.html to verify the same. Regards, -Original Message- From: Tony Lotts [mailto:tljme...@gmail.com] Sent: Wednesday, August 05, 2009 9:18 AM To: JMeter Users List Subject: Re: testing form upload