The Apache JMeter desktop application is open source software, a 100% pure Java application designed to load test functional behavior and measure performance. It was originally designed for testing Web Applications but has since expanded to other test functions.

learn more… | top users | synonyms

2
votes
1answer
8 views

using JMeter to test an ASP application

I am using JMeter to test an ASP application. I can correctly log in with a name and password, but when I send a request to the next page, I get a response that I am not logged in correctly. It seems ...
1
vote
1answer
12 views

Conditional JMeter HTTP Header Manager

I am using JMeter to test an HTTP server that accepts and validates an APIKey and returns a time limited token on success. I want to send a token if I have one and an APIKey if I don't so I have ...
0
votes
1answer
16 views

Jmeter - Missing Samples in load test?

I have a CSV Data Config which is looking up a number list. This number list goes from 1 to 4050. I have 4050 XML files which are to be transmitted via SOAP-XML. Named 1.xml, 2.xml etc.. As you can ...
0
votes
0answers
19 views

JMeter: better performance with Java impl of HTTP Sampler than with HTTPClient impl

I have been using JMeter for a few years now and have been using the Apache HTTPClient sampler implementation as it seems to be the recommended implementation, and the Apache HTTPClient is a mature ...
1
vote
1answer
18 views

Jmeter - regex in beanshell (matcher()/pattern() ) is cutting national characters

i need to cut some words from server response data. Use Regular Expression Extractor I get <span class="snippet_word">Działalność</span> <span ...
0
votes
1answer
20 views

Jmeter random variable in several threads

I have a Jmeter thread group that uses the variable uuid several times throughout. uuid is defined with 12345678-1234-4444-a123-${__Random(111111111111,999999999999)} In other words, it starts with ...
0
votes
0answers
29 views

Jmeter, a single thread interacting through CSV data set

i have used a transaction controller which has recorded several action for different products, now i have parameterized the product name by putting them in a csv file. But now when i run the script ...
0
votes
1answer
30 views

Capture values from JDBC requests and use for next query

I'm trying to use Jmeter with about 10 queries per thread. All I want each thread to do is Insert into a player table using mysql auto increment. Then I want to use mysql SELECT last_insert_id(); ...
0
votes
1answer
26 views

jMeter Embedded Resources Notification

When I check "Retrieve All Embedded Resources from HTML Files" is there a way to get notified if any of those are 404s? Right now we're using jMeter for a lot of front end testing in general, not ...
0
votes
0answers
18 views

jmeter async load test socket closed error

I am testing a web service that waits for an event. I am using Jmeter and have set up a thread group, CSV data set, and http header manager. The test starts and runs for 3 threads (users) each one ...
0
votes
1answer
10 views

How to use JMeter to test encoding in HTTP Request? Burp Suite?

I have to develop a security testing framework to make sure all output in our application is encoded. I have many post & get http requests Each request may have 1 or many parameters What I ...
-1
votes
1answer
14 views

How to set proxy for JMeter from behind another proxy?

I'm new to jmeter. I'm trying to test a web app using proxy server. I have gone through the jmeter docs and got the settings but I'm currently working under company proxy. So how can I set the proxy ...
0
votes
1answer
25 views

JMETER + query regarding Mysql database

I am using wordpress application and running Jmeter to perform load test on "wordpress" app. When I am creating a blog, I capture through JMETER via proxy and 1 blog is created, with a new record in ...
1
vote
1answer
30 views

Manipulate post body of httpsampler before request

I'm testing an Eclipse-RAP application with JMeter. In RAP the client (javascript-framework in the browser) communicates with the server over a json-based protocol. A message looks like this: ...
0
votes
1answer
27 views

How to override values in JMeter?

I am facing a situation currently, where I have 2 threads inside 1 thread group. Both the threads use different csv's. For this I've put 1 CSV Data Set Config in each thread. Problem is there is a ...
0
votes
1answer
37 views

how to create and call a custom function in jmeter

I am using JMeter for load testing, I am creating 1000 threads each sending an http request as follows: {"email" : "test${__threadNum}@test.com"} that's working fine, now I need to add a more ...
-1
votes
1answer
22 views

Connect to DB2 database in JMeter

Could you please let me know how to connect DB2 database and execute stored procedures in JMeter? I am trying to connect via JDBC, but I am not able to debug where the error is. Is there any plugin ...
-1
votes
0answers
20 views

Failed to reset remote engine java.lang.IllegalStateException: The engine is not owned by this thread

I have installed JDK7. Jmeter 2.7. All paths have been set. Client and server machines are configured for distributed testing. But connecting from client to server, i opened jmeter.log to check ...
1
vote
1answer
45 views

Setting up JMeter for Distributed testing in AWS with connectivity issues

I have to do distributed testing using JMeter. The objective is to have multiple remote servers in AWS controlled by one local server send a file download request to another server in AWS. How can I ...
0
votes
1answer
51 views

Making a WCF SOAP service send X requests per second

I'd like to know if there's a way to configure JMeter so that it send X request per second to my web-service. The aim is simply to see what's going on with my service. I am using JMeter-plugins with ...
-1
votes
0answers
33 views

Calculating an appropriate Ramp/Pacing time for Performance Test

I'm trying to run some performance tests on a web application but I am struggling a little with how long to set the ramp up period. I'm running tests, that will execute a specific series of requests, ...
1
vote
1answer
21 views

How to access different test-fragment present in external test plan

I want to create a common test plan and define multiple test fragment in this file. I want to use some of the specific test fragment in the specific test plan. Here is outline of two different test ...
0
votes
1answer
30 views

jsessionID not kept between jmeter http requests

I'm trying to do a simple load-test in a website which requires you to log in first. I read the jmeter documentation about the cookie manager and looks like as long as I make all my requests within ...
1
vote
1answer
16 views

jMeter hangs on scanner read

I am trying to test my memcached installation using jMeter (we are using jMeter for other functional tests, so using it for memcached seems like the best option). I am using the TelnetClient ...
0
votes
2answers
59 views

Jmeter - why linux gives different answer than windows?

I wrote a test plan on Windows 7. I remotely started a test on two machines, both Windows Vista. A problem came up when I tried do same thing on Linux - I used the same test plan. I can login a ...
1
vote
1answer
33 views

jmeter: How to repeat two thread groups in test plan?

I have two thread groups: setUp Thread Group - executed only once Thread Group - executed for number of users defined in CSV file. The first thread group prepares data once, which will be used by ...
0
votes
1answer
30 views

Passing JMeter user variable across beanshell script in different threads

What I'm trying to do is pass variable between the threads in JMeter - so one thread modify this value and next one will get it - please look at this structure: Test Plan User Defined Variables ...
0
votes
1answer
20 views

Retrieve information from page in order to send GET parameters

I have a small experience on JMeter and haven't been able to find any source that allows me to solve a problem that i'm having on a login page. After a successful login, there are several products a ...
-2
votes
0answers
13 views

how to save extracted values in a file along with Api call name (REST arch)? [closed]

please help me to save values extracted using "Json path extractor" to a file along with the label (Api call name) i am using a "include parameter" to get the response_time for each call and ...
1
vote
1answer
16 views

Jmeter summary report when using loops

Currently I have a project which does http requests. It pulls the urls from a CSV file using a loop. This works for me. However when I look at my summary report it gives me the results of only one ...
1
vote
2answers
68 views

Pulling multiple values from JSON response using 'Json Path Extractor ' in Jmeter

{ "response_time": 0.014376163482666016, "applications": [ { "api_key": "blted0e7982e1cf62a8", "name": "gta", "uid": "gta", ...
0
votes
1answer
17 views

log stack trace when HTTP request return error in Jmeter

I want to log all error message for failed HTTP request. I am going to run the thread group for 1B users and I don't want to use the View Result Tree because it logs everything and log file will ...
0
votes
1answer
23 views

JMeter: run a single Thread Group with dynamically generated Number of Threads (users)

I have several Thread Groups in a test plan, that are exactly the same with the exception of the Number of Threads, which keeps incrementing from TG to TG. Whenever I have to change a single thing, ...
0
votes
0answers
29 views

Jmeter with ZK framework

I need to do a Load test on application which is built on ZK framework. When i record a script which performs below action a. User Login b. Select Role c. Open and Create Record d. Log out. When ...
0
votes
1answer
30 views

jmeter: Error invoking bsh method: eval

When i try to execute the following code in jmeter: import org.json.JSONArray; import org.json.JSONObject; String jsonString = prev . . . '' I get the following error: ERROR - ...
1
vote
1answer
44 views

# of threads, ramp up period, loop count, scheduler duration in jmeter

I am new to Jmeter and confused about those 4 settings: number of threads, ramp up period, loop count, duration in scheduler. Thread Group 1: # of threads:1, ramp up period:0, loop count:5, no ...
0
votes
1answer
43 views

Can Jmeter only measure OS level metrics?

I use JMeter for performance testing of various application, but I generally measure OS level metrics, like CPU, memory, network usages. Can I use application specific metrics through JMeter, for ...
2
votes
2answers
34 views

Where can I pass the value of percentage of request on each http request in jmeter?

I am testing load in jmeter. Now I have 8-10 page requests to be execute. But I want to provide percentage/number of request in this page and another page is having difference number of request. eg. ...
0
votes
1answer
48 views

JMeter - Iterative use of variables via CSV

I am having trouble, how do I put this into a JMeter test and ensure that my all Customer Numbers assigned to each Thread are being used? My load test... • There are 12 SOAP requests (12 x ...
0
votes
0answers
24 views

Issues with Scorm Application in jmeter [closed]

After running the SCORM application in jmeter getting an error message "Your browser does not support javascript or it has javascript support disabled.This SCORM package may not play or save data ...
0
votes
0answers
23 views

Jmeter - Acces log sampler and logged sesion

I have a JMeter test plan with following http request samplers. I have created Test Plan like below: Login - using Once Only Controller Acces Log Sampler which needs a logged in user Logout - also ...
1
vote
1answer
27 views

JMeter SocketException on .png,.jpg etc files

I am running a Jmeter script in version 2.8. After running script in result tree i am getting below mentioned error. But this error is not coming to any specific request. I am getting this error for ...
0
votes
2answers
48 views

How to run a Jmeter test using Maven 2?

i want to run a Jmeter test using Maven 2, so i can integrate it in Jenkins .I tried to do it using WSO2 Test Automation Framework following this tutorial but i got this error: Missing artifact ...
-1
votes
2answers
44 views

jMeter freezes in cloud based solution

Currently I am working with jmeter in the cloud. I have a scenario to execute with 20,000 users. But after 10,000 it freezes. I checked the CPU time: it is utilizing 100%. Please advise me what to ...
0
votes
1answer
49 views

Using JMeter to test a Flex/Spring web app

i have a Flex/Spring web project where the client is a flexapp that runs in the browser and the server components(Spring/Hibernate) runs in tomcat. The compile dcluient files also obviously reside in ...
0
votes
2answers
55 views

JMeter Raw Body Parsing

I am using JMeter to do load-testing. My test consists of a simple POST request. When I perform this request, the server, in its error logs, says No Payload Detected. I have verified that the server ...
0
votes
1answer
40 views

Extracting Xpath or RegEx in Jmeter for a verification token?

I am trying to use a RegEx Extractor in a get HTTP request for a login page with Users, Passwords and Verification tokens. The tokens are my problem. I am using this in my Regular Expression ...
1
vote
1answer
31 views

Cannot save cookies for JMETER

I'm new with Jmeter and by default sorry for dump question. I want to start with the most basic testing for web site. I want to login to application and navigate to specific page. Basically, that is ...
1
vote
1answer
26 views

Jmeter doesn't upload files while replaying

I am trying to replay a script in jmeter which has to upload a file in the transaction. The user is able to login when I replay but the file doesn't get uploaded. How do I overcome this??
0
votes
0answers
49 views

Jmeter does not send LDAP request

I have an application that receives LDAP requests from LDAP clients and forwards these requests to LDAP servers. I am using Apache Jmeter for load testing of this LDAP java application. Jmeter and the ...

1 2 3 4 5 26