I've just started using jMeter and the plan is to do some load testing. I have the GUI effectively logging into the site for one user. One of the params sent back on the login post action is a value for creationTime that is set on form creation.
The problem is that our app checks against the last login time and refuses you if the time ...
I wish to use JMeter to login to my site, run some reports and log out again as a load test.
Is JMeter the best tool for this? I'm concerned it doesn't maintain the browser session between requests.
...
Can someone explain to me how to get jmeter to login. I have an http request that goes to apps/j_security_check. I have added two parameters j_username and j_password. It does not seem to authenticate the user when I run this request.
...
hey
is there any way to configure in jmeter to save the files coming from a response?
In the dialog box, choose 'save file'?
Thanks
...
I'm running a recorded load test in JMeter. It appears that when the test is replayed, JMeter doesn't wait for the request to respond before proceeding onto the next request in sequence.
How do I address this?
...
I have one random variable and one variable which I read from page. How can I subtract or multiply that two variables and where or in which component in JMeter.
...
Is it possible in Jmeter to make nested regular expression. Or to execute reg ex on some ${varible}. End how if it is possible.
...
Is it possible to limit maximum value with ${varible} in the Random variable. Or limt the maximum value in Random variable with other variable.
...
hi
this is parvez
1> would you please tell me the max limit of no. of threads that i can use in JMeter 2.4 for conducting a load test?
2> Is there any difference in taking all threads in a single loop or by taking less no. of threads and initialize loop to achieve same no. of users/threads?
Example- No. of threads=500
Ramp up...
When I connect the database with JDBC i get this:
[StatAggResultCollector] Test Started, host: local
[StatAggResultCollector] Test Ended, host: local
in response message I get:
java.sql.SQLException: No suitable driver found for jdbc:oracle:..
any solution? Is this from jdbc driver or from configuration?
...
When I test my application with JMeter on weblogic server for one user I get:
Error 500--Internal Server Error
From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
10.5.1 500 Internal Server Error
The server encountered an unexpected condition which prevented it from fulfilling the request.
This error present only on one page which i...
With JMeter I simulate different user login into application, and each user have table with different number of column. I want to put value into table which sum will be equal to 1. If rowcount is 3 I must put 1/3 triple in each column. Any idea?
...
While sending WebService(SOAP) requests, I occasionally receive the response below, and always for requests that take more then 60 seconds to complete.
Thread Name: Test Group A 1-1 Sample
Start: 2010-08-24 11:56:23 MDT Load
time: 60186 Latency: 0 Size in bytes:
0 Sample Count: 1 Error Count: 1
Response code: 000 ...
Running Jmeter on XP, I have the following scenario:
Declare the variable "ServerName" with the value 'serverNameValue'
Declare the a variable "TestResultsFolder" with the value 'c:\results\${ServerName}'
... do samplers ...
Have a simple data writer save result to "${TestResultsFolder}\file"
Unfortunately, The data writer is saving t...
Hello All,
I have been trying to integrate JMeter test with Maven and Hudson. I came across this beautiful post on Maven JMeter and got it set up easily.
And then I got to know that Hudson has a performance plugin using with JMeter results could be directly displayed on Hudson dashboard.
Now problem I face is in using Performance plugi...
Hello
I am trying to solve following problem:
I have a system with which communication is done through SOAP (XML over http).
In Jmeter I am using SOA/XML-RPC (not wsdl based webservice).
I am sending one SOAP request and receiving response in vollowing tag
<Prodrevision>5</Prodrevision>
This number changes from time to time and goal...
Is it posible to bind to a variable value from response and then pass it as parameter to other http request?
...
I have been trying hard to make https request work with JMeter+Maven.
Whole Scenarios is - Lauch app URL > login to app (this is https) > on Home page (this is http)
I recorded these tests using HTTP Proxy of JMeter. And then as specified here changed the "HTTP request protocol" of sampler to "https"
Now when I execute the test form Ma...
Hi I had configure a .jmx to work with a thread group that does a simple http request.
It works perfectly locally, but when I upload the .jmx to another server in amazon it doesn't work.
Differences between local machine and ec2 server:
local:
is ubuntu when jmeter was installed
as sudo apt-get install jmeter. And
the version is...
I have a web service running on my dev box implemented using Spring-MVC 3.0. I have various JUnits that test against that service using RestTemplate. What I would like to do is have JMeter pick up those JUnits REST requests when I run them. However, to do that, I need to have Spring's RestTemplate send them to the proxy that I'm running ...