Re: oracle database connection

2006-03-02 Thread sebb
Try searching the archives - this was discussed a week or so ago. S. On 02/03/06, Abdul Azeem Khan <[EMAIL PROTECTED]> wrote: > aoa, > can anyone help me by telling how to setup an oracle database connection > with JMeter for db testing. > > thanx > azeem > > > -

Re: Need some help on Result Tree Response Data

2006-03-02 Thread sebb
Try removing the visualiser that is generating the NullPointerException S. On 02/03/06, Ganti, Venkata <[EMAIL PROTECTED]> wrote: > Yeah good thought, I already tried that, I saw the response from the > browser but not from JMeter... > > The Response is successful... the response code is either 30

oracle database connection

2006-03-02 Thread Abdul Azeem Khan
aoa, can anyone help me by telling how to setup an oracle database connection with JMeter for db testing. thanx azeem - Yahoo! Mail Bring photos to life! New PhotoMail makes sharing a breeze.

RE: Need some help on Result Tree Response Data

2006-03-02 Thread Ganti, Venkata
Yeah good thought, I already tried that, I saw the response from the browser but not from JMeter... The Response is successful... the response code is either 302/200. I found the following info from the LOG... 2006/03/02 14:58:19 DEBUG - jmeter.visualizers.ViewResultsFullVisualizer: Start : upda

RE: Need some help on Result Tree Response Data

2006-03-02 Thread Wade Catron
Is it possible that the server is simply returning an empty response? Can you attempt to manually duplicate (through a browser of some sort) the exact request that JMeter is sending to ensure that the response does indeed contain data? ...Just an idea. On Thu, 2 Mar 2006 14:39:44 -0800, "Ganti,

RE: Need some help on Result Tree Response Data

2006-03-02 Thread Ganti, Venkata
They are HTTP Samplers... The problem is there in both HTML and TEXT views... -Original Message- From: Wade Catron [mailto:[EMAIL PROTECTED] Sent: Thursday, March 02, 2006 2:30 PM To: JMeter Users List Subject: Re: Need some help on Result Tree Response Data I've observed this type of b

Re: Need some help on Result Tree Response Data

2006-03-02 Thread Wade Catron
I've observed this type of behavior when trying to view response data as HTML, if the code contains extensive styles and javascript, etc... I just assumed that the HTML parser within JMeter can only handle basic HTML elements, and pretty much chokes on certain things. Are you trying to view it as

Re: Need some help on Result Tree Response Data

2006-03-02 Thread sebb
What Samplers are they? Have you checked jmeter.log for any errors? On 02/03/06, Ganti, Venkata <[EMAIL PROTECTED]> wrote: > Hi All, > > I successfully ran couple of tests runs of my application and I want to > see the results in View Result Tree Pane. I am able to see the Response > Data only fo

RE: Need some help on Result Tree Response Data

2006-03-02 Thread Ganti, Venkata
Hi All, I successfully ran couple of tests runs of my application and I want to see the results in View Result Tree Pane. I am able to see the Response Data only for couple of samplers but for others it is showing me a BLANK Screen. What could be the problem for showing a BLANK Screen on the Resp

Jmeter for performance testing client-server apps

2006-03-02 Thread Vigo, Nestor
Can someone tell whether is possible to use JMeter or not for performance testing any client-server (Visual Basic) applications? If so, how? Otherwise, what other tool may I use instead? Thanks in advance, Kind regards. ***

Re: Ideal Ramp-up time ?

2006-03-02 Thread Rekha ShivKumar
Hi Sebb, thanks! that was really helpful! On 3/2/06, sebb <[EMAIL PROTECTED]> wrote: > > Ramp-Up time is nothing to do with throughput; it is just the total > time to start all the threads. > > It needs to be long enough to avoid too large a work-load at the start > of a test, and short enough tha

Re: Ideal Ramp-up time ?

2006-03-02 Thread sebb
Ramp-Up time is nothing to do with throughput; it is just the total time to start all the threads. It needs to be long enough to avoid too large a work-load at the start of a test, and short enough that the last threads start running before the first ones finish (unless one wants that to happen).

Re: Ideal Ramp-up time ?

2006-03-02 Thread Rekha ShivKumar
hi All, I have a question: Im trying to determine ideal ramup time for my load test. Im using 10 threads ,and data is taken in from a 3Million query file .The test is pretty simple, its a query search scenario for a simple website . An article online says first do a trial test run and determine ave

Re: Loading Parameter for Load Test

2006-03-02 Thread sebb
If you need to maintain synch between files, then add a User Parameters Pre-Processor element, and read the data into separate variables. All the variables on the test element are read as part of the same "transaction". Otherwise, merge the data files into a CSV file, and use CSV Data Set to read

RE: Loading Parameter for Load Test

2006-03-02 Thread S R
Thanks for the help. I am using file to load login names differently from the ${_StringFromFile(user.dat)}. But i am not sure about the sequence of reading parameters from the files. As in my case i would have to create multiple files for each parameter name with different values in a sequence,

Re: How to fail a test?

2006-03-02 Thread Antonio Zippo
The user manual says: "The HTML Assertion allows the user to check the HTML syntax of the response data using JTidy" so it checks only if the result is a correct HTML (or XML, or XHTML). i tried it, but the problem is the same :-( I think that i must set something to say jmeter to consider

Re: How to fail a test?

2006-03-02 Thread Raffaele Viola
Ciao, Have you try to use HTML assertion ? Let me know ;-) -Raffo 2006/3/2, Antonio Zippo <[EMAIL PROTECTED]>: > > Hi all, > i'm using jmeter from ant with ant-jmeter.jar task > i created from the gui a testplan based on an http request. > I need the test fails when the Response Assertion fail

How to fail a test?

2006-03-02 Thread Antonio Zippo
Hi all, i'm using jmeter from ant with ant-jmeter.jar task i created from the gui a testplan based on an http request. I need the test fails when the Response Assertion fails (for example on a response code 404) I tried using the forceBuildFailure attribute in the ant task, but without success...

RE: Retrieving xml versions of listeners

2006-03-02 Thread Kumar Krishnan \(K\)
Thanks sebb - I think the ant task will do the trick. And to answer your question: >> This applies to the Aggregate Listener as well - presumably you would not want it to output a new aggregrate record every sample? << No - this would not be very useful. Kind Regards Kumar -Original Messa

Re: 3 simple controller parrallel

2006-03-02 Thread sebb
One way would be to create 20 Thread Groups, and run them in parallel. Other possibilities: If the activities are similar, but use different URLs or options, you could code the samplers using variables, and read in the variables from CSV Data Set. Or you could use the Switch Controller with 20 S

AW: 3 simple controller parrallel

2006-03-02 Thread Torsten . Frehe
In our application there are 20 activities. Now we want: User 1 is using activity 1, user 2 is using activity 2, ... user 20 is using activity 20. They are all starting at the same time. So we need to build a threadgroup where all 20 user starting there activities. I hope you can understand. T.F.

Re: Retrieving xml versions of listeners

2006-03-02 Thread sebb
The Listeners all log the same information - all results or errors only - regardless of what they display. There is currently no provision for the Listeners to log the processed data - and for most of the listeners it would not make sense, as the data is updated as the test progresses. This appli

Re: 3 simple controller parrallel

2006-03-02 Thread sebb
You can use any controller you like, but it is not possible to run them in parallel. Parallel running requires different threads or different thread groups (which is a different set of threads). What are you trying to do? S. On 02/03/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi, > which

RE: Loading Parameter for Load Test

2006-03-02 Thread Lincoln, Adym
Salman, Use a CSV Data File element and setup simple variables that capture the userid and password. Then use these ${userid}/${passwd} variables in your login HTTP Sampler element. I do this all the time with out Mantis web application tests. One caveat to a CSV Data file...all threads within

AW: 3 simple controller parrallel

2006-03-02 Thread Torsten . Frehe
Hi, which controller do I have to use? -Ursprüngliche Nachricht- Von: sebb [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 2. März 2006 12:35 An: JMeter Users List Betreff: Re: 3 simple controller parrallel A single thread can only process one controller/sampler at a time. S. On 02/03/

Retrieving xml versions of listeners

2006-03-02 Thread Kumar Krishnan \(K\)
Hi all - I'm running jMeter in non-gui mode. I've got and aggregate listener and some others. I'd like to be able to attach the results of the aggregate listener into a build report (I've implement a continuous integration environment). Is there some way to output the aggregate listeners result

Re: 3 simple controller parrallel

2006-03-02 Thread sebb
A single thread can only process one controller/sampler at a time. S. On 02/03/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi together, > > I have a thread group including 3 simple controllers. > Is it possible to start the simple controllers parrallel? > I want to start 25 threads and hope

AW: elements of aggregate report

2006-03-02 Thread Torsten . Frehe
Hi, for example when you started 10 thraeds: 10,0 %error -> 9 request are ok, 1 request failed 234590% line -> 90% of your request only needs 2345 or less 267 median -> 267 is the 5th or sixth value of your request 1,2/s throuput -> 1,2 byte per second -Ursprüngliche Nachricht

Loading Parameter for Load Test

2006-03-02 Thread S R
I have a situation where i will have to load test the application over the HTTP Request for 200 users logins for J2EE application. Need to input data for 200 logins with their different parameters for each users. Do i have to input the data manually or there is some easier way around. Your help

elements of aggregate report

2006-03-02 Thread Gargi Kumar
Hi All, In the aggregate report there are elements  median, % error , 90% line and throughput. so, my question is that what does these elements mean and how are they calculated. Thanks in advance  

3 simple controller parrallel

2006-03-02 Thread Torsten . Frehe
Hi together, I have a thread group including 3 simple controllers. Is it possible to start the simple controllers parrallel? I want to start 25 threads and hoped each controller starts parrallel. But the second controller does not start until the first controller ends. Regards Torsten Frehe *

Re: Performance graph of the Results Monitor Listener [Resolved]

2006-03-02 Thread Noureddine BEKRAR
Thank you Peter, I followed your advice and i downloaded the Tomcat sources, and that is the results of my investigation: The class who play the role of status servlet is: org.apache.catalina.manager.StatusManagerServlet The information sent to JMeter and displayed in the Monitor results li