Javascript pop up message

2006-03-23 Thread Teresita Ventura
Hi, Im testing a page where in a javascript popup message appears on the page when an invalid input is detected. I recorded this scenario in a browser using a proxy server in jmeter. When I run it on jmeter, it does not work. I know that jmeter cannot interpret javascript, but is there

Can Jmeter interpret javascript

2006-03-23 Thread Biyala, Rahul\(Cognizant\)
Hi all, Can jmeter interpret javascript? If not then is there any patch available? Thanks & Regards, Rahul Biyala This e-mail and any files transmitted with it are for the sole use of the intended recipient(s) and may contain confidential and privileged information. If you are not the

JDBC calls oracle -nothing happens

2006-03-23 Thread Sayali Kanade
Hi, First of all, thanks for updating the documentation at such short notice. I am using the edbc driver to connect to Ingres. Also, I was trying a sample test to connect to an Oracle db like shown in the example. I have carried the instructions to the letter, but the queries that I fire do not re

Re: Extending JMeter in Eclipse

2006-03-23 Thread Simon
i do the following: download the source and the binary. unzip the source in a directory \workspace\A unzip the binary in a directory B (it is recomended to unzip both source and binary in the same structure) in the eclipse i made a new proyect with name = A after that i include all the .jar in

Re: Undefining variable values and ForEach

2006-03-23 Thread sebb
On 22/03/06, Ben Damm <[EMAIL PROTECTED]> wrote: > Hello, > > I have a script that reads a line of text once per loop and consumes it > using CSV Data Set Config, then uses "__split" to split one of those fields. > There is a ForEach controller that is executing once per value over the inner > fie

Re: JDBC calls oracle -nothing happens

2006-03-23 Thread sebb
Try a select statement instead - might give more information Try enabling debug for the jmeter classes - in jmeter.properties, remove the # from the line: #log_level.jmeter.protocol.jdbc=DEBUG or add the following to the jmeter command line: -Jjmeter.protocol.jdbc=DEBUG S. On 23/03/06

Distributed Testing

2006-03-23 Thread sarath chandra
Hi, I'm using jmeter to load test the application.For that i have took some agents from different goegraphical locations. In some machines the test is not running.Is there any limitation regarding JMeter to have the agents from same location. Help me out to solve this issue. Thanks

JMeter results

2006-03-23 Thread Massimo Forno
Hi, I would like to know what kind of results jmeter can display after a web test session, in particular if the response time is calculated as Time To First Byte (TTFB), Time To Last Byte (TTLB) and if the 90% Line can be considered as a 90th percentile. Thank in advance. Massimo Forno.

Re: JMeter results

2006-03-23 Thread Peter Lin
the response time is time to last byte and the 90% line is hte 90th percentile. peter On 3/23/06, Massimo Forno <[EMAIL PROTECTED]> wrote: > > Hi, > > > > I would like to know what kind of results jmeter can display after a web > test session, in particular if the response time is calculated as T

Re: Next Jmeter Release

2006-03-23 Thread Michael Stover
I don't think the code in CVS head has this limitation - either relative or absolute paths will work. On Wed, 2006-03-22 at 11:20 -0800, Eric Dalquist wrote: > Is there anything community members can do to help the release? I'm > running into issues because of the relative path requirements of th

RE: JMeter results

2006-03-23 Thread Massimo Forno
Hi, First of all I would like to thank you for the very fast answer. I am sorry for the stupid question: the time to last byte is calculated from the request to the server and the last byte received or from the time to first byte to the last byte? I am very interested because I have very bad per

Re: JMeter results

2006-03-23 Thread sebb
The time is the overall time: start timer make http request fetch http response stop timer S. On 23/03/06, Massimo Forno <[EMAIL PROTECTED]> wrote: > Hi, > > First of all I would like to thank you for the very fast answer. > > I am sorry for the stupid question: the time to last byte is calculate

Re: Next Jmeter Release

2006-03-23 Thread sebb
[Hi Mike!] Yes, that was fixed in the current 2.1 branch in SVN; if you want to test it, try a nightly build. S. On 23/03/06, Michael Stover <[EMAIL PROTECTED]> wrote: > I don't think the code in CVS head has this limitation - either relative > or absolute paths will work. > > On Wed, 2006-03-22

RE: JMeter results

2006-03-23 Thread Massimo Forno
Thanks again, Do you know where I can find all the functions used by jmeter to calculate the results? Thanks, Massimo -Original Message- From: sebb [mailto:[EMAIL PROTECTED] Sent: Thursday, March 23, 2006 3:04 PM To: JMeter Users List Subject: Re: JMeter results The time is the overall

Re: JMeter results

2006-03-23 Thread sebb
You'll have to read the code. On 23/03/06, Massimo Forno <[EMAIL PROTECTED]> wrote: > Thanks again, > > Do you know where I can find all the functions used by jmeter to > calculate the results? > > Thanks, > Massimo > > -Original Message- > From: sebb [mailto:[EMAIL PROTECTED] > Sent: Thur

RE: JMeter results

2006-03-23 Thread Massimo Forno
Hi, Of course I've to read the code, maybe my question was not so precise. I'd like to know the exact package and the java file, because I think that maybe some of you tried to custom the results in the past. Thanks, Massimo. -Original Message- From: sebb [mailto:[EMAIL PROTECTED] Sent:

Re: JMeter results

2006-03-23 Thread Peter Lin
the code is in the SampleResult class http://svn.apache.org/repos/asf/jakarta/jmeter/trunk/src/core/org/apache/jmeter/samplers/SampleResult.java look at sampleStart and sampleEnd. it's pretty basic and uses System millisecond time peter On 3/23/06, Massimo Forno <[EMAIL PROTECTED]> wrote: > >

Re: JMeter results

2006-03-23 Thread Peter Lin
it's quite common for the browser to take seconds to render the page, if there's deeply nested tables or other fancy layouts. Back when I did webUI stuff, we had to tune the HTML, so the page rendering wasn't horribly slow. peter On 3/23/06, Massimo Forno <[EMAIL PROTECTED]> wrote: > > Hi, > > F

Re: Negative Durations?

2006-03-23 Thread Eric Dalquist
I've tried some simple test cases to reproduce it. I can only reproduce the negative results when running heavy load. I may see if I can add some debugging code to the simple data writer and log some extra info when the duration is negative. If you would like the more complex script I can repro

Re: Negative Durations?

2006-03-23 Thread Peter Lin
are they any request failures under heavy load when you see the negative duration? peter On 3/23/06, Eric Dalquist <[EMAIL PROTECTED]> wrote: > > I've tried some simple test cases to reproduce it. I can only reproduce > the negative results when running heavy load. I may see if I can add > some d

Re: Negative Durations?

2006-03-23 Thread Eric Dalquist
The few failed requests we see don't appear anywhere near the samples with negative durations. -Eric Peter Lin wrote: are they any request failures under heavy load when you see the negative duration? peter On 3/23/06, Eric Dalquist <[EMAIL PROTECTED]> wrote: I've tried some simple test

Re: Negative Durations?

2006-03-23 Thread sebb
A test script would be very useful. Send it to me privately if necessary, otherwise please attach it to a Bugzilla issue - don't send it to the list. I don't suppose the negative responses are always child responses, e.g. followed redirects or embedded resources? S. On 23/03/06, Eric Dalquist <[E

Re: JMeter results

2006-03-23 Thread sebb
For example, if the HTML fails to provide sizes for images, it won't be able to lay the page out until it has downloaded and examined them. S On 23/03/06, Peter Lin <[EMAIL PROTECTED]> wrote: > it's quite common for the browser to take seconds to render the page, if > there's deeply nested tables

Sanity check

2006-03-23 Thread Brendan . McKenna
Hi, I have a requirement to be able to select the sampler instance being executed based on a probability value. For example, I will (or, really, would like to) have a controller with say three samplers -- one of which must be executed every time through the script, based on a selection

Re: Sanity check

2006-03-23 Thread Peter Lin
that sounds pretty advanced. off the top of my head, I don't know of an easy way to achieve the desired effect. maybe others will have suggestions peter On 3/23/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Hi, > > I have a requirement to be able to select the sampler instance >

Re: Sanity check

2006-03-23 Thread Brendan . McKenna
Hi Peter, Thanks for the quick response. I'd kind of figured that I'd have to get coding. Given my requirements, do you have any recommendations as where I should start? Should I just try extending GenericController, or start from scratch with something that implements Controller, or

Re: Sanity check

2006-03-23 Thread Peter Lin
I would look at one of the controllers and see which one is closest to what you need and then start from there. the controllers are in the components folder I believe, so that's where the stuff is. peter On 3/23/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Hi Peter, > > Thanks f

Re: Sanity check

2006-03-23 Thread sebb
RTFM ;-) The Switch Controller can be combined with a suitable variable (N). Just define the variable to have the values 0,1,2 for the relevant percentage of the time. I think this was discussed on this list a few months ago. Basic procedure: r=random integer, 1-100 N=0 if 0 < r <= 75 N=1 if

Re: Sanity check

2006-03-23 Thread Peter Lin
haha, just goes to show I don't ever use the switch controller. one of these days I'll have to try out the other jmeter stuff. peter On 3/23/06, sebb <[EMAIL PROTECTED]> wrote: > > RTFM ;-) > > The Switch Controller can be combined with a suitable variable (N). > > Just define the variable to h

Re: Undefining variable values and ForEach

2006-03-23 Thread sebb
I've updated the split() function to clear the next unused variable. This will be in the next nightly build (and the upcoming 2.1.2) S. On 23/03/06, sebb <[EMAIL PROTECTED]> wrote: > On 22/03/06, Ben Damm <[EMAIL PROTECTED]> wrote: > > Hello, > > > > I have a script that reads a line of text onc

Performance and graph result listener

2006-03-23 Thread Dong Liu
Hi, I found the performance of the tested web application will be degraded when I use graph listener to record and show the data. I am not sure if this behavior is common. And if the problem will be solved if I use the Aggregate Report listener instead. Cheers, Dong

RE: Distributed Testing

2006-03-23 Thread Oliver Erlewein \(DSLWN\)
Hi Sarath, Jmeter likes it best when all jmeter-servers are on the same subnet. You will probably also have problems going through firewalls. This is due to the non static rmi ports used for communication between jmeter client and server. Regards Oliver Erlewein -Original Message- From

2.1.2 nightly build https problems [was: Next Jmeter Release]

2006-03-23 Thread sebb
On 22/03/06, Bill Gosse <[EMAIL PROTECTED]> wrote: > How do we record bugs? I tried the 2.1.2 nightly build, which seemed to > correct an issue I was having with remote server tests hanging on 2.1.1, > but seemed to have some issues with test failing with https protocol, > that 2.1.1 didn't have.

Re: HTTP Parameters ommited when using POST in 2.1.1

2006-03-23 Thread sebb
We need a bit more information to be able to help ... E.g. details of an HTTP request, what you expect to happen, and what actually happens. S. On 22/03/06, Emmanouil Batsis <[EMAIL PROTECTED]> wrote: > > Hello all, > > In my Struts based webapp. the HttpServletRequest object is often > missing s

Re: TCP Sampler

2006-03-23 Thread sebb
Check the jmeter.log file for errors. On 22/03/06, Seeta somagani <[EMAIL PROTECTED]> wrote: > Hi, > > I'm trying to test my application which accepts TCP queries from clients and > sends them back TCP results. I'm simulating a load of 10 concurrent users > inside one Thread Group using a single J

Re: NullPointerException

2006-03-23 Thread sebb
On 22/03/06, liquornpoker <[EMAIL PROTECTED]> wrote: > > Hi guys, > > I just created a jmeter script to run 100 threads and it will loop forever > for a duration of 1 hr. After looping the first round, it start having > NullPointerException errors. This script usually do only Http requests. > Any

Re: URIException: IPv6reference in HTTPSampler

2006-03-23 Thread sebb
No idea on this one - can you create a Bugzilla issue, and add a simple test case and the corresponding jmeter.log (obfuscate private info if necessary) S. On 21/03/06, Ivan Rancati <[EMAIL PROTECTED]> wrote: > I found this odd problem with the HTTP Sampler, where a variable that > contains the UR

Is there a 'http response sampler' in Jmeter

2006-03-23 Thread Loke Peng-Fai-a12489
Hi, I am planning to do a performance and load testing on our server. A simplified configuration and flow is listed below: 1. http 2. http/soap Client -> Web Server under test > Third party Authentication Server <--

SMTP protocol

2006-03-23 Thread Bhanu Krishna Cherukuri
Hi All, Is there any way we can test performance of SMTP protocol using Jmeter? Can any one tried that and if any one tried that please provide any pointers for that. thanks Bhanu

Re: Javascript Validation Problem

2006-03-23 Thread tere
Is there a way I can still know that my page throwed a javascript popup message? -- View this message in context: http://www.nabble.com/Javascript-Validation-Problem-t1315810.html#a3566741 Sent from the JMeter - User forum at Nabble.com. -