Re: Integrating Monitoring stuff

2009-10-05 Thread Tony Lotts
Sending the data back to JMeter, and running an RMI server on the SUT will add overhead to the SUT in addition to DTrace. Why not just coordinate the times with the times from Jmeter after the test? On Mon, Oct 5, 2009 at 9:09 AM, Gokulakannan Somasundaram gokul...@gmail.com wrote: I started

Re: Is it posible to download a file and test the contents?

2009-09-21 Thread Tony Lotts
Short answer, yes. What type of file? On Mon, Sep 21, 2009 at 9:58 AM, Marco Pas marco.paso...@gmail.com wrote: Hi there, i was wondering if it possible to download a file with jmeter and test the content of that. I have got a webpage with a download button on it and want to grab the

Re: Regarding captcha image

2009-09-18 Thread Tony Lotts
Have the developers disable captcha, or code in a way to set a captcha code that will always pass verification (of course the code would be disabled before go-live). On Thu, Sep 17, 2009 at 1:33 AM, M.Vijaya Bhaskar vijayabhaska...@sigmainfo.net wrote: Hi Deepak, Thank you for your quick

Re: Page load times

2009-08-31 Thread Tony Lotts
The next person to ask this question, please pay a nickel to the Apache Foundation. On Fri, Aug 28, 2009 at 12:43 AM, Deepak Shetty shet...@gmail.com wrote: you cant http://jakarta.apache.org/jmeter/ -- Jmeter is not a browser. Use Selenium or QTP or watir or equivalent which drive a browser

Re: How do you pass a JSESSIONID to other requests after Login?

2009-08-07 Thread Tony Lotts
Can you post an example of the JSESSIONID? On Fri, Aug 7, 2009 at 1:45 PM, Braulio braulio...@gmail.com wrote: Hi All, I'm running into an issue with JMeter in that I can't pass the JSESSIONID to other requests in the same Thread Group in my JMeter script. The script is very simple (all

Re: How do you pass a JSESSIONID to other requests after Login?

2009-08-07 Thread Tony Lotts
Use the variable in a POST parameter. Name: jsessionid Value: ${jsessionid} On Fri, Aug 7, 2009 at 4:14 PM, Braulio braulio...@gmail.com wrote: Hi Guys, Thanks for the quick response. To answer Deepak's question: a. I used the Debug sampler and verified that I was getting the correct

Re: testing form upload performance

2009-08-05 Thread Tony Lotts
/installation.html to verify the same. Regards, -Original Message- From: Tony Lotts [mailto:tljme...@gmail.com] Sent: Wednesday, August 05, 2009 9:18 AM To: JMeter Users List Subject: Re: testing form upload performance Duplicate the HTTP traffic that the app generates, in JMeter

Re: testing form upload performance

2009-08-04 Thread Tony Lotts
Duplicate the HTTP traffic that the app generates, in JMeter. Use the HTTP Request Sampler, or HTTP Request HTTP Client Sampler. If you do not have a spec of the HTTP POST that the app sends, use a packet sniffer such as Wireshark to analyze the HTTP traffic generated by the app. On Mon, Aug 3,

Re: testing form upload performance

2009-08-03 Thread Tony Lotts
What protocol does the application under test use to upload the file? On Mon, Aug 3, 2009 at 11:25 AM, sebb seb...@gmail.com wrote: On 28/07/2009, SADAT ALI KHAN sadat.ali.k...@gmail.com wrote: Hi users, I have an application which uploads pdf forms... an applet is picks a pdf

Re: understanding sample times and results

2009-07-30 Thread Tony Lotts
Does response time increase over time when the test is run with a single (1) thread? On Thu, Jul 30, 2009 at 4:25 PM, S.D. sidd.da...@gmail.com wrote: I meant .. increasing the number of threads does not really show any variation. There's still a large deviation between the samples at the

Re: TCP Sampler with SSL

2009-07-23 Thread Tony Lotts
I think that what the op means, is that they want to send SSL encrypted TCP transactions (no HTTP layer). This exists in the wild more often than some would think. Remember the last time you used your credit card at a brick and mortar store? Chances are, the payment data was transmitted via SSL

Re: Size Of the File Using Jmeter

2009-07-23 Thread Tony Lotts
Use the Simple Data Writer configured to save the parameters that you need, and graph it with gnuplot, excel, etc... Note: excel 2003 has a limitation of 65,536 rows per sheet. Try to accomplish as much as you can using the CSV JTL format. If you must use XML, bear in mind that if you have a

Load results into database

2009-07-17 Thread Tony Lotts
I'm looking for a system which will store JMeter results in a relational database. It's easy to load results from CSV. However loading XML result files is a bit more complicated. Has anyone here created, or come across a similar system (other than Jchav)? Thanks, Tony

Re: Do Jmeter Support Java Script calls..?

2009-07-16 Thread Tony Lotts
What is it that you want to accomplish? If this is for a scalability test, the performance of client side code execution is irrelevant. On Thu, Jul 16, 2009 at 2:10 AM, MITRAJ rajesh.mittapa...@gs.com wrote: Tabs are loaded on demand and contents in the tab are pre-loaded.. Thanks, Raj

Re: Do Jmeter Support Java Script calls..?

2009-07-16 Thread Tony Lotts
that it is sent directly from the applet to the server (I have my doubts on that but could not prove them wrong). so, the test simply didn't act like the application no matter what. On Thu, Jul 16, 2009 at 4:23 PM, Tony Lotts tljme...@gmail.com wrote: What is it that you want to accomplish

Re: get several IDs from several Users

2009-07-15 Thread Tony Lotts
What should JMeter do with the CompanyIDs once it gets them? On Wed, Jul 15, 2009 at 5:55 AM, Knut Wuchtig knu...@gmx.net wrote: Hello, maybe you can help me. I work with JMeter and SOAP Request, like GetObjectByFilter. I have the following problem. Situation: I have an amount of user

Re: Do Jmeter Support Java Script calls..?

2009-07-15 Thread Tony Lotts
It sounds like what you want to test is the load time of the frames. Is each frame defined in a different HTML document? If so, just request each HTML document with an HTTP GET. You may also want to check 'Download Embedded Resources...'. On Wed, Jul 15, 2009 at 8:07 AM, MITRAJ

Re: How to test login accounts?

2009-07-15 Thread Tony Lotts
See CSV Data Set Config, and Response Assertion. On Wed, Jul 15, 2009 at 9:01 AM, ziohausam ziohau...@gmail.com wrote: Hello All, we are moving our accounts (4000) from an old to a new system. I need to conduct a test using jmeter to make sure that all will successfully log in. how can i

Re: The browser has JavaScript disabled error in view results tree

2009-07-06 Thread Tony Lotts
It is ideal to eliminate javascript execution from your performance test. The performance of javascript execution is variable, based upon client-side factors, such as browser, and platform. The metrics that you will likely want to report are: - The total time to download each embedded resource

Re: Simulating 3.000 visitors per minute

2009-07-06 Thread Tony Lotts
Try a request to load index.html, and select Retrieve all embedded resources... On Thu, Jul 2, 2009 at 10:00 AM, appel arn...@siminn.is wrote: Hi I need to create a test plan where 3.000 users load up 4 pages (at the same time) per minute. It's a index.html page, that includes three

Re: Help with Constant Timer and Listener, gradually Threads

2009-06-15 Thread Tony Lotts
1st question: The timer is not required, but it's handy if you need to simulate think time. If you're doing scalability testing you may want think time If you're doing a stress test, you probably will not want think time, it will depend on what your server can handle, performance reqs. etc...

Re: Hot to stop http request execution in case of no response

2009-06-15 Thread Tony Lotts
In JMeter 2.3.3 you can set a response timeout in the HTTP Request, or HTTP Request HTTPClient nodes. JMeter 2.3.3 release notes: HTTP Samplers now support connection and request timeouts (requires Java 1.5 for Java Http sampler) If this doesn't suit your needs, you could use a beanshell

Re: Help with Constant Timer and Listener, gradually Threads

2009-06-15 Thread Tony Lotts
The following will work for either scenario, if you want to step-up in increments of 500, or gradually ramp up to 500, run at 500 for a specified amount of time, then gradually add 500 and so-on. - Use 10 thread groups, each with 500 threads, and set the startup delay equal, or greater than

Re: Regular Expression Extractor and its Variables

2009-06-15 Thread Tony Lotts
Try: - vars.get(city_10) or you could use ${city_10} - vars.put( city_10, a ) - print(${city_10}) or print(vars.get(city_10)) On Fri, Jun 5, 2009 at 12:19 PM, mattlamignat mateusz_grode...@o2.plwrote: This is my test plan: |-User Defined Variable |-HTTP Request |-Regular

Re: SSL over TCP

2009-06-11 Thread Tony Lotts
Could this be accomplished with the beanshell sampler? On Thu, Jun 11, 2009 at 5:22 AM, sebb seb...@gmail.com wrote: On 10/06/2009, Tony Lotts tljme...@gmail.com wrote: I need to send SSL over TCP (not HTTPS). The TCP sampler is not sending a client hello. How can I get JMeter to send

SSL over TCP

2009-06-10 Thread Tony Lotts
I need to send SSL over TCP (not HTTPS). The TCP sampler is not sending a client hello. How can I get JMeter to send the client hello? Thanks

Re: Beanshell timer - response time threshhold

2009-06-02 Thread Tony Lotts
This is for validating how many users a single webservice app server can support within a response time requirement, and the rate at which those user's can send transactions. On Mon, Jun 1, 2009 at 9:03 PM, sebb seb...@gmail.com wrote: On 01/06/2009, Tony Lotts tljme...@gmail.com wrote: I

Beanshell timer - response time threshhold

2009-06-01 Thread Tony Lotts
I have created a timer which varies the delay based upon whether or not the response time of the previous transaction is 2999 milliseconds. The solution that I have uses a beanshell timer, beanshell postprocessor, and beanshell assertion. The beanshell timer returns the delay property set by