Trouble creating a Java Request Sampler

2004-01-08 Thread Michael R. Wolfe
I have created a Java Request Sampler but cannot get Jmeter to recognize it. I used sleepTest as a template and simply changed the name of the class to start, so it is unlikely that the problem is in the class itself. I think it is a classpath problem. The documentation says that Jmeter looks f

RE: comparing results

2004-01-08 Thread Sonam Chauhan
> For example: An Aggregate Report might show percentage increase (or > decrease) of average, min, and max stats; A Graph Results might overlay > one set of graphs on another. Hi Chris - you may be better off exporting data to Excel, and doing this analysis there. At the bottom of this email, I'

RE: Web Services Question

2004-01-08 Thread peter lin
I've checked in the changes to the sampler for proxy support. I didn't fix the width issue yet. unfortunately, I don't know the textfield well enough to set the width correctly. I gave it a quick try, but wasn't able to. I'll fix that later, once I find out from one of the other developers. ple

comparing results

2004-01-08 Thread Krahe, Chris
Has anyone used a listener (or similar tool) that can read and compare 2 or more results files (.csv or .jtl) from the same test plan? For example: An Aggregate Report might show percentage increase (or decrease) of average, min, and max stats; A Graph Results might overlay one set of graphs o

Re: Obfuscated URLs

2004-01-08 Thread Mark Lassau
Tomi Tiihonen wrote: Can JMeter parse received HTML documents and submit a request based on a Link text? I would need something like this in order to test an application which uses obfuscated URLs, where every URL is constructed followingly: /servlet?parameter=ABCDEF1234... The numerical part is

Re: Timer wierdness

2004-01-08 Thread Jordi Salvat i Alabart
Just place your timer INSIDE the sampler. En/na Sonam Chauhan ha escrit: script vs. configuration-tree behaviour: timers do not 'execute' in the way samplers and controllers do, but they apply to every sampler in their same controller or any subcontroller thereafter. Thanks Jordi - that explai

RE: Web Services Question

2004-01-08 Thread Peter Reid
Perhaps you could make the WSDL URL, Web Methods drop down, URL, SOAPAction and "Soap/XML-RPC Data" dialog box full screen width for improved readability. I am happy to test all changes. I anticipate many hours for this projected. Jmeter will be the load and regression testing tool. -Ori

RE: Web Services Question

2004-01-08 Thread Peter Reid
Marvellous. Thank You! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org]On Behalf Of peter lin Sent: Friday, 9 January 2004 09:16 To: JMeter Users List Subject: RE: Web Services Question eeek, that sounds aweful. I'm sorry you have no choice. I'll make the chang

RE: Web Services Question

2004-01-08 Thread peter lin
eeek, that sounds aweful. I'm sorry you have no choice. I'll make the change tomorrow and check it in over the weekend. when I'm ready, I'll send you an email. I don't use proxy's, so I will need your help to test it out. how does that sound? peter lin Peter Reid <[EMAIL PROTECTED]> wr

RE: Web Services Question

2004-01-08 Thread Peter Reid
The issue is not that the Web Service uses the proxy, the company I am working in mandates a proxy for all external traffic with Novel Border protection etc etc. This will often be the case. We have yet to establish an internal Web Service. As such, in this environment, I cannot avoid the prox

RE: How to change context root in generic manner?

2004-01-08 Thread BAZLEY, Sebastian
Yes. I think the __property() function was available in 1.9.1 - it has been enhanced since. The easy way to check is to use the Function builder, which will also show what parameters are accepted. S, -Original Message- From: Andrew Chapman [mailto:[EMAIL PROTECTED] Sent: 08 January 2004

RE: How to change context root in generic manner?

2004-01-08 Thread Andrew Chapman
Sebastian, Am I right in thinking that $__P() is only available in versions after the last stable release (1.9.1)? Andy [EMAIL

RE: How to change context root in generic manner?

2004-01-08 Thread BAZLEY, Sebastian
Not as far as I know. [Although you might be able could use a BeanShell sampler in a Once-Only Controller to set the property, this would be a bit messy.] One way to do this is to use a variable ${contextRoot} instead of a function call, and then define the variable "contextRoot" on the test plan

RE: How to change context root in generic manner?

2004-01-08 Thread Michael . Lee
Is there a way to do this from within the gui? We have some unsavy users. -Original Message- From: BAZLEY, Sebastian [mailto:[EMAIL PROTECTED] Sent: Thursday, January 08, 2004 10:24 AM To: 'JMeter Users List' Subject: RE: How to change context root in generic manner? Command line options

RE: How to change context root in generic manner?

2004-01-08 Thread BAZLEY, Sebastian
Command line options are equally valid for the GUI, for example: jmeter -JcontextRoot=/abcd/efgh/ You can even use -t testfiles/test.jmx to preload a test script. [Or you can put the definition in jmeter.properties] S. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

RE: How to change context root in generic manner?

2004-01-08 Thread Michael . Lee
Got this working. Thanks! Now I have a few more problems. How do I run the app in the GUI? I can't seem to replace the variable $(__property(contextRoot)} which is everywhere. On a similar note, I added this variable to the HTTP Request Defaults. It works great when I call it from the command line

RE: Web Services Question

2004-01-08 Thread peter lin
The current implementation is pretty simple. For the wsdl url, I use the standard JMeter connection classes, so proxies do not affect it. The actual call using apache soap currently doesn't account for proxy. My reasoning (probably flawed) is a webservice shouldn't be using a proxy, since it

Re: Antwort: invalid character error in jdbc call to oracle

2004-01-08 Thread Mridul Jain
hey, This is strange, last time when I tried without semicolon, it gave exception saying SQL statement doesn't end properly. But after reading your mail, I started jmeter and tried again and it worked:D. Thanks. mridul. --- [EMAIL PROTECTED] wrote: > > > > > > >>select price from mrcoffees;

Antwort: invalid character error in jdbc call to oracle

2004-01-08 Thread martin . ruppelt
>>select price from mrcoffees; Try the statement without the semicolon at the end. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

invalid character error in jdbc call to oracle

2004-01-08 Thread Mridul Jain
hi, I am using jmeter-1.9.1 on GNU/Linux box and trying to test out oracle 9i release 2 on a remote Linux box via oracle jdbc thin driver i.e ojdbc14.jar. When I hit run, the connection with oracle on remote host is established without any problems as I can see it in the jmeter.log. But I get an

How do you manipulate a counter?

2004-01-08 Thread Frank_Lindner
I need to manipulate a counter, how can i do this? I need the counter as a control parameter. My testscript should do something like that: Login Loop: (for i=0;1000;1) http://server/presentationframe?counter=i http://server/presentationframe?counter=i+1 http://server/presentat

RE: Timer wierdness

2004-01-08 Thread Sonam Chauhan
> > Thanks Seb. The 'Sleep Test' Java Sampler should work too: > > Indeed, but the Samplers create entries in the results file and Listeners > - this extra 'noise' might be a nuisance. Good point - thanks Seb. With regards, Sonam Chauhan -- Corporate Express Australia Ltd. Phone: +61-2-9335-07