jmeter

JMeter not recording download scenario

Hi, I am testing a webportal and using jmeter for the performance testing.Now i am able to record all the things,but the webportal has an option to download files and when i click on download the process of downloading starts and jmeter is not recording this scenario so how can i make jmeter to record this download scenario ...

jmeter multiple users problem

We are using Jmeter to test our Php application running on the Apache 2 web server. I can load up Jmeter to use 25 or 50 threads and the load on the server does not increase, however the response time from the server does. The more threads the slower the response time. It seems like Jmeter or Apache is queuing the requests. I have ch...

Add request header field to JMeter WebService(SOAP) Request

It seems like the WebService(SOAP) Request of JMeter does not include headers in the request defined in a HTTP Header Manager. I want to send Accept-Encoding: gzip, deflate with every SOAP request of my JMeter test - is there a way to achieve that? ...

Distributed JMeter tests with per-slave CSV datasets

I'd like to run a distrubuted JMeter test on our site, following the manual. My tests are parametrized via a CSV DataSet configuration element to simulate diffent users. The question is now: Will JMeter use the same DataSet for each slave, or can I somehow configure each slave with its own dataset? If the first is the case, slaves will ...

JMeter proxy and java serialization in HTTP/POST?

We have an applet-servlet communication that we'd like to record with JMeter's HTTP proxy. It works with GET messages until the applet sends an HTTP POST message which includes some serialized Java objects (built-in types), then we get this error in the Applet: OK, so there's some JVM version conflict somewhere in the queue. But where...

verify rtsp capabilities

I need to load test a site that serves up flash video via RTSP. I've looked at JMeter & Selenium and do not see any support for RTSP. Are there any testing tools that support RTSP load testing? ...

JMeter Graph Results for multiple http requests

I created a simple JMeter Http test. I specified 50 users, each users will do do 30 http requests (one after the other), and the user's ramp up time is 1 second. Then I added a Graph Result Listener, then recorded the performance of my application for 10minutes. Question : What is Graph Results Listener measuring - per http request of...

How to synchronize JMeter Thread groups

I fill the database with JMeter. There is 2 thread groups which fill 2 tables in parallel. After these 2 tables filled I need to start the last thread group to fill the third table. How can I do it? Is it possible to synchronize JMeter Thread groups? ...

Using JMeter with MSMQ

I need to load test a server that supports WebSphere MQ, web service and MSMQ interfaces. Currently I use proprietary load drivers for testing via WebSphere MQ and the web service, and we don't currently test MSMQ (it's new, and just being developed). I would like to "standardize" on a single load test tool; LoadRunner is too expensive (...

Jmeter - generate xml

Hi all, I have a J2EE application that needs some extensive integration testing. I am using Jmeter to generate HTTP POST requests. So far I manage to send them to the server correctly but the xml is static. I am looking for a way to insert dynamic/random values into the XML and then send it to the server. Something like a PreProcessor b...

JMeter - Access Log Sampler setting a default app. name

hi, i'm trying to achieve the following: i want to use a tomcat accesslog file and load it into jmeter and run it. The problem i run into is that for example a accesslog line looks like this: "GET /MyApp/... HTTP/1.1" What i need is to be able to change the applications name (MyApp). I did not find anything usefull if this is possibl...

JMeter OutOfMemor

I am facing below OutOfMemor errors, and JMeter stops working.... java.lang.OutOfMemoryError: Java heap space Dumping heap to java_pid4412.hprof ... Heap dump file created [591747609 bytes in 71.244 secs] Exception in thread "AWT-EventQueue-0" java.lang.OutOfMemoryError: Java heap space Exception in thread "AWT-EventQueue-0" java.lang.O...

JMeter - Access Log Sampler only firing one line of the log file

hi, i'm using the access log sampler from jmeter and set it up like it was descripted here: Access Log Sampler Tutorial However when i start the test it only executes first entry of my logfile. I really don't understand this? Anyone had a similar problem? Any help is appreceated thx. kukudas ...

Are there any automatic converters to move jmx files from jmeter 2.1.1 to 2.3.4?

We're upgrading our fairly old version of jmeter and would like to avoid re-authoring the many many scripts we've built. I've noticed that the jmx file is stored in xml format. Are there any xsl's or automatic converter apps that can help us automatically update the majority of the definition and highlight parts where jmeter has change...

JMeter - Set unique id per server

I am using JMeter to do some load testing on a SOAP webservice. Currently I am running 5 servers. I would like to distinguish the requests based on which server the request came from. An easy way to do this would be to stick some unique identifier into the email address field for a register request. I was hoping to use hostname or ip...

JMeter - easily changeable configuration options

I am using JMeter to load test a SOAP webservice. The webservice exists in a bunch of places, like my localhost, a dev box, an integration box, a production box, etc. I am using a WebService(SOAP) Request Sampler and have set the "Server Name of IP", "Path", and "SOAP Action" paramaters like so: Server Name of IP: ${SERVER} Path: ${PA...

Testing Java Classes with JMeter

I'd like to test a Java Service Call. My first attempt was to use the "Java Request Sampler" The docu says This sampler lets you control a java class that implements the JavaSamplerClient interface. I'm not sure how to get the org.apache.jmeter.protocol.java.sampler.JavaSamplerClient Interface as there is no Maven Artifact no...

Monitoring resource use in Jboss in JMeter performance test

Dear all, We are performing some JMeter tests on a JBoss 4.0.5 deployed web app. We want to integrate the resource usage on the application on the server (memory, threads, etc) with the JMeter response time results. We have found a tutorial for doing that with Tomcat: http://www.informit.com/guides/content.aspx?g=java&seqNum=273 an...

Jmeter - get entire query string into variable

Is there a way to use the Regular Expression Extractor to grab the entire .NET encrypted query string and place it in a variable? Example, for URL via a GET: https:/www.website.com/folder/page.aspx?jfhjHSDjgdjhsjhsdhjSJHWed I am trying to have ${myQueryString} = jfhjHSDjgdjhsjhsdhjSJHWed so I can replay it later in the test plan by ...

JMeter to grab full querystring into a variable for future use

Someone provided me the regex to parse out a query string: (?<=\?)[^?]+$ I am trying to use that in JMeter with no luck (although I am successful in pulling out individual query string parameter values based on various example postings on the web). I created a regular expression extractor called "Grab QueryString". I selected the URL ...