Jmeter not recording using HTTP Proxy

2008-12-03 Thread Krithik
I'm newbie to JMeter. I've download and started JMeter for recording. But it is not recording anything else. Can you help me out? I guess it is a problem with my proxy setting. I run my Tomcat webserver and Jmeter in my local machine In Jmeter log, The following error recorded.. 2008/12/04 05:

RE: Jmeter - AutoRefresh Implimentation

2008-12-03 Thread Steve Kapinos
>So my requirement is that I need to get some value from response and use >that value as parameter value in next request. So get the request, process it with whatever method you want, like a regex or xml sampler, feed that into a property, and then generate your request. Replace the javascript's

RE: Jmeter web performance testing

2008-12-03 Thread Steve Kapinos
Depends on how tightly you want to control how many interactions of each task, and the timing between them A simple way is to simply create 4 thread groups.. with each thread group running 25 threads composed of each task. This will give you 100 simultaneous sessions. You can get more slick with

RE: How extract values from an XML response?

2008-12-03 Thread Steve Kapinos
Add a debug sampler to see what your property output looks like during the test. I'm no regex expert... but I think its because your regex expression looks totally wacked. You may also have things like multiline matching to sort out if you want to match what was in your original mail. \W does

Re: Jmeter web performance testing

2008-12-03 Thread Sridhar
Hi Himanshu, I tried but didn't worked i am doing some were wrong, i am very new to JMeter. Here is the scenario i am doing Added HTTP proxy to work bench Added Once Only controller to HTTP proxy Added one simple controller to HTTP proxy Added another simple controller to HTTP proxy recorded log

Re: Jmeter web performance testing

2008-12-03 Thread Himanshu Ghai
Hi Sridhar, how about putting 100 users in a thread group..login sequence in a once only controller(with clear cookies each iteration in cookie manager unchecked)...then every other scenario you mentioned in throughput controllers(25% each)..does that sound right? Himanshu On Wed, Dec 3, 2008 at

Jmeter - AutoRefresh Implimentation

2008-12-03 Thread Mahajan, Nitin
Hi All, I am using JMeter to generate load scripts for java/j2ee application and I have reached a point where response page/html have some dynamic JavaScript to process. To be specific JavaScript refreshes page every 30 sec by generating some url. This url need some request parameter value whic

Jmeter web performance testing

2008-12-03 Thread Sridhar
Hi, I am new to JMeter doing web testing for performance. Can anyone please suggest me how to record one scenario below. I want aggregate report 100 Users Login at same time in to web application 25 users composing a email 25 users just login & logout with out performing any task. 25 user

RE: How extract values from an XML response?

2008-12-03 Thread Jose Pablo Sarco
I tried with: *Regular Expression: nuevoIdNodo =(.*) <\Wscript> *Template: $1$ And I don't see any value in the variable -Original Message- From: Jose Pablo Sarco Sent: MiƩrcoles, 03 de Diciembre de 2008 03:08 p.m. To: JMeter Users List Subject: RE: How extract values from an XML

RE: How extract values from an XML response?

2008-12-03 Thread Jose Pablo Sarco
Yeah, I tried it but I don't see any result. -Original Message- From: Steve Kapinos [mailto:[EMAIL PROTECTED] Sent: MiƩrcoles, 03 de Diciembre de 2008 01:24 p.m. To: JMeter Users List Subject: RE: How extract values from an XML response? Use the regex extractor component to pull it

RE: How extract values from an XML response?

2008-12-03 Thread Steve Kapinos
Use the regex extractor component to pull it from the body of the response http://jakarta.apache.org/jmeter/usermanual/component_reference.html#Regular_Expression_Extractor -Original Message- From: Jose Pablo Sarco [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 03, 2008 2:38 PM To:

RE: Howto: set "duration" or schedule by command line ?

2008-12-03 Thread Steve Kapinos
That I am not sure of because I never have used this scheduler functionality. I make my tests run a fixed # of iterations, or based on other criteria determined during the test itself. -Original Message- From: Mordechai [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 03, 2008 11:41

How extract values from an XML response?

2008-12-03 Thread Jose Pablo Sarco
Hi all, I'm using Jmeter 3.2.3 ON xp. I need extract the value from an XML response and I can't do it. I have the following XML as response: nuevoIdNodo ='300012'; I need extract the value 300012 to use as parameter in a request made after that response. I research the web

RE: Concatenate values from a file

2008-12-03 Thread Manjula Priyantha
Thx mate. I've changed my mind and went for a small VB script. Now it's done. BR, Manjula -Original Message- From: Fitzpatrick, Adrian [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 03, 2008 5:44 PM To: JMeter Users List Subject: RE: Concatenate values from a file A small java pro

RE: Concatenate values from a file

2008-12-03 Thread Fitzpatrick, Adrian
A small java program or unix script or word macro, etc. should be able to translate the file to the required format? -Original Message- From: Manjula Priyantha [mailto:[EMAIL PROTECTED] Sent: 03 December 2008 11:07 To: 'JMeter Users List' Subject: RE: Concatenate values from a file

RE: Concatenate values from a file

2008-12-03 Thread Manjula Priyantha
Yes that's the issue. I can't create the CSV files as 001, 002, 003 004, 005, 006 bcos I'm using existing files with more that 15 data rows. /Manjula -Original Message- From: Steve Kapinos [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 03, 2008 3:55 PM To: JMeter Users List S

thread group thread behavior

2008-12-03 Thread kirk
Hi, I was looking at providing a particular load pattern on a server. When I wasn't seeing that load show up, I dropped some debug statements into my servlet code that printed the session id. What I found was that adding a cookie manager limited the number of sessions to the number of threads.

RE: Howto: set "duration" or schedule by command line ?

2008-12-03 Thread Mordechai
Steve, Thanks for the quick reply, I had tried setting it through the GUI, and found that Jmeter hung, perhaps I was settting something wrong. If I want test X to run for 4 hours, is it necessary to check the [x] loop forever ? or by passing the jduration = 14400 is it implied that the test will

RE: Concatenate values from a file

2008-12-03 Thread Steve Kapinos
Can you not make your sample file be a set per line? 001, 002, 003 004, 005, 006 Etc? If so, just using the CSV Data set is just a matter of naming the variables you want and deciding any behavior between different thread groups if applicable. You can not have CSV Data set read multiple lines i

RE: Howto: set "duration" or schedule by command line ?

2008-12-03 Thread Steve Kapinos
You could define the value in the test plan using a property.. and then set the property via the command line using -J The property could also be defined in a properties fil If the property is 'duration' in the test plan use ${__P(duration,300)} 300 is a default value you would use if the prop

Contributing to JMeter: Some Questions

2008-12-03 Thread JM Ibanez
Hi, I've started work on a sampler for JMeter, and I have a few questions about this. Is this the correct list to email, or should I redirect to jmeter-dev? TIA, -- JM Ibanez Software Architect Orange & Bronze Software Labs, Ltd. Co. [EMAIL PROTECTED] http://www.orangeandbronze.com/ -

RE: Concatenate values from a file

2008-12-03 Thread Manjula Priyantha
It seems the e-mail is broken ... Using a text file with following sample contents (in real case it has huge number of data) 001 002 003 004 005 So on Need a variable with following out put for each iteration of the request; 1 iteration - 001|002|003 2 iteration - 004|005|006 So on What is t

Howto: set "duration" or schedule by command line ?

2008-12-03 Thread Mordechai
Hi there, I wasn't able to find this in the docs though I might have missed it. Is there a way to specify via command line the duration for the test? I've had trouble getting the scheduler to work accurately from the GUI in regards to duration. ./jmeter -n -t someTestScript.jmx -? what flag to s

Concatenate values from a file

2008-12-03 Thread Manjula Priyantha
Hi, Using a text file with following sample contents (in real case it has huge number of data) 001 002 003 004 005 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]