Re: change the variable's value without the counter

2011-09-22 Thread freesky
Sorry, I forgot the function. I tried the '_intSum', it works. Thanks! -- View this message in context: http://jmeter.512774.n5.nabble.com/change-the-variable-s-value-without-the-counter-tp4825954p4829190.html Sent from the JMeter - User mailing list archive at Nabble.com.

Performance report in jmeter

2011-09-22 Thread vamba
Hi . Do any one pls send me the sample performance report in excel ..it vl be more helpful for me to refer that -- View this message in context: http://jmeter.512774.n5.nabble.com/Performance-report-in-jmeter-tp4829909p4829909.html Sent from the JMeter - User mailing list archive at Nabble.com.

Re: Response headers: HTTP/1.0 404 Not Found

2011-09-22 Thread evanphelan
The Response Header is a 404. What's the Response Body? -- View this message in context: http://jmeter.512774.n5.nabble.com/Response-headers-HTTP-1-0-404-Not-Found-tp4829578p4830579.html Sent from the JMeter - User mailing list archive at Nabble.com.

Variables not being replaced?

2011-09-22 Thread Bruce Wobbe
I have a jmeter HTTP request where I define the server to be ${TestServer} I then pass the variable via ant with the server I want to use property name=TestServer value=192.168.1.2/ However when I run the test the substitution doesn't seem to happen I get this in the jtl responseData

Re: Variables not being replaced?

2011-09-22 Thread Bruce Ide
To pull java properties into jmeter variables you have to use the __P function. Try making a user defined variable config element with TestServer defined, and make its value ${__P(TestServer,)} The value after the comma is a default, so if you have a default test server you want to use if the

Re: Variables not being replaced?

2011-09-22 Thread Bruce Wobbe
Yep, thanks I figured this out right after I sent the email Bruce On Thu, Sep 22, 2011 at 2:16 PM, Bruce Ide flyingrhenqu...@gmail.comwrote: To pull java properties into jmeter variables you have to use the __P function. Try making a user defined variable config element with TestServer