Re: Responsetime aggregation

2008-10-16 Thread Ronan Klyne
le for multiple samplers. Ronan -- Ronan Klyne Business Collaborator Developer Tel: +44 01189 028518 [EMAIL PROTECTED] www.groupbc.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: How extract a text fragment?

2008-10-21 Thread Ronan Klyne
reply e-mail and delete this message. Any views or > opinions expressed in this e-mail > are those of the sender and do not necessarily coincide with those of Neoris. > This document may not be reproduced, > copied, distributed, published, modified or furnished to third parties, > without the prior written consent of > Neoris. &g

Re: How extract a text fragment?

2008-10-21 Thread Ronan Klyne
Ronan Klyne wrote: > Jose Pablo Sarco wrote: >> Hi all, >> >> >> >> I need extract a text fragment from a response; but I can't >> >> >> >> I have this response: >> >> >> >> >> >&

Re: Xpath extractor

2008-10-22 Thread Ronan Klyne
t/ns3:body/ns3:ADR/ns2:postcode/text() I think this will be a problem with the the XPath is executed. I suspect that there is no provision for declaring namespace prefixes. Try this one~: //*[local-name()='ADR']/*[local-name()='postcode']/text()

Re: Xpath extractor

2008-10-22 Thread Ronan Klyne
espace of "http://wwwxxx.nl/xxxF/xr/x/x";. The XPath evaluator does not interpret the ns2 prefix in the document, so it cannot match the namespace. /*[local-name()='postcode']/ will find any element whose local name is 'postcode', regardless of namespace. Hope that hel

Re: RegExp through multi-line response?

2008-10-23 Thread Ronan Klyne
as third and sixth subgroups ($3$ $6$ - > in Jmeter). But this regexp doesn't work in Jmeter. > Could somebody help me with it? > > TIA!! You need to put (?m) and the start to make it a multi-line regex. I found this in the ORO API docs (http://jakarta.apache.org/oro/api/ ) but

Re: Jmeter Reports

2008-11-12 Thread Ronan Klyne
irectory of your JMeter distribution. You can get an XSL processor from www.saxonica.com, amongst other places. If you have lots of CSV logs, you can usually just open them in Excel like any speadsheet. # r -- Ronan Klyne Business Collaborator

Re: Regexp extrator in my test plan

2008-11-14 Thread Ronan Klyne
exp: > Template: $1$ > Match No: 1 > Default val: Failed to fetch modid > > Kindly let me know if my regexp, template and match number is fine. The > regexp i have used is verified using the ORO demo applet. They all look good to me... Ronan -- Ronan Klyne

Re: Regex on certain number of characters per line [off-topic]

2008-11-14 Thread Ronan Klyne
expressions, so I am hoping someone can point me in the right direction. Your regex also has the problem that '.' will match a comma. The character set [^,] will match anything that's not a comma, so I think you want this: ([^,]*,){,39}[^,]* # r -- Ronan Klyne

Re: Help with a regular expression

2009-01-07 Thread Ronan Klyne
; > onclick="updateSelectedQuantity(this,'simulaciones'); updateState();" > id="Simulaciones_items"> > > > > > > OTHERITEM > > Neo14 > > ...

Re: Please help on regular expressions

2009-01-08 Thread Ronan Klyne
. Please help me on this. I think regular expression may > help here but don’t know the syntax for that. Jakarta help document did not > help me much. > > > Please tell me the regular expression for > > series

Re: Struggel with regular expression

2009-02-20 Thread Ronan Klyne
> style="color: black;" id="cell_2_2" > class="table-odd">01 id="cell_2_3" class="table-odd">Haarlem style="color: black;" id="cell_2_4" class="table-odd"> title="Toon

Re: how stuff works Jmeter ??

2009-04-07 Thread Ronan Klyne
??? >> >> I'm doing some research on the Jmeter e found some question. >> >> Thank You !!! >> >> Ricardo >> > -- Ronan Klyne Business Collaborator Developer Tel: +44 01189 028515 ronan.kl...@groupbc.com http://www.groupbc.com/

Re: how stuff works Jmeter ??

2009-04-07 Thread Ronan Klyne
an "how does it work"... Ronan > Thank you > > ricardo > > > > > > Ronan Klyne-2 wrote: >> >> If you want to know all about how JMeter works and what it can do, I'd >> recommend starting with the manual. These

Re: how stuff works Jmeter ??

2009-04-08 Thread Ronan Klyne
l >> >> On Tuesday 07 April 2009 15:32:37 ricardo13 wrote: >>> Hi, >>> >>> More once thank you !! >>> >>> Ok but Jmeter create Threads, Processes to request webserver ?? >>> When I configure Jmeter I typed 10 users and ramp-up

Re: Regular Expressions

2009-04-17 Thread Ronan Klyne
how to submit the whole lot to the form again - in an automated >> manner >>> > > > of >>> > > > >>> > > > course. >>> > > > >>> > > > >>> > > > >>> > > > Regar

Re: 1/5 of test threads don't finish

2009-04-28 Thread Ronan Klyne
rBase.java:1007) > at org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:290) > at java.lang.Thread.run(Thread.java:619) > > Thanks, > Mike -- Ronan Klyne Business Collaborator Developer Tel: +44 01189 028515 ronan.kl...@groupbc.com http://www.groupbc.com/ ---

Re: Jmeter - question ( Regular Expression Extractor ) HELP?!

2009-04-28 Thread Ronan Klyne
sion you should write in following way: > > Regular Expression : RESPONSE ID = (\d+) > > And also check where are you finding the response id(means choose the proper > radio button for "response field to check") > > With Regards, > Suvendu > > -- Ronan Kly

Possible memory leaks when running consecutive thread groups

2009-09-24 Thread Ronan Klyne
Hi all, I've got a fairly sizeable test plan with several thread groups in in, configured to run consecutively. These thread groups run the same test (a large test, linked to with a module controller) with increasing numbers of users, from 2 to 20, in steps of 2. I can successfully run the

Finding BSF errors.

2009-09-28 Thread Ronan Klyne
Hi all, My test isn't working, and I've been seeing a lot of these messages in JMeter.log: 2009/09/28 10:49:57 WARN - jmeter.modifiers.BSFPreProcessor: Problem in BSF script org.apache.bsf.BSFException: JavaScript Error: missing ; before statement I can tell that I need to go and fix some

Finding BSF errors.

2009-09-28 Thread Ronan Klyne
Hi all, My test isn't working, and I've been seeing a lot of these messages in JMeter.log: 2009/09/28 10:49:57 WARN - jmeter.modifiers.BSFPreProcessor: Problem in BSF script org.apache.bsf.BSFException: JavaScript Error: missing ; before statement I can tell that I need to go and fix some

[solved] Re: Possible memory leaks when running consecutive thread groups

2009-09-28 Thread Ronan Klyne
load', 'multiselect_mod', 'document', 'no_responses', 'navigation_xml_flags_cache', ]; for (var i = 0; i < names.length; i++) { vars.put(names[i], null); } OUT.println("Cleared vars."); """ I hope that helps anyone else running

Re: [solved] Re: Possible memory leaks when running consecutive thread groups

2009-09-28 Thread Ronan Klyne
sebb wrote: On 28/09/2009, Ronan Klyne wrote: I have tracked down the flaw in my understanding! The data I store in the JMeterVariables structure exposed as 'vars' is being stored for the duration of the test. I think this is a fault with JMeter, as it is of no use once the th

Re: HTTP Post Requests Failing

2009-10-07 Thread Ronan Klyne
Hi Jatin, I can see two problems: 1) You use "Content-Type: application/x-www-form-urlencoded" when you are posting XML data - use application/xml or text/xml. It's probably worth including the charset too. 2) (Maybe a problem) If this is meant to be a SOAP request, then you will probably need

Re: HTTP Post Requests Failing

2009-10-07 Thread Ronan Klyne
nce of HTTP Header managers in all the samplers and everything was working fine when viewed the results in the Tree listener. Thanks to Sebb and Deepak for giving clues on using this. Thanks Jatin Ronan Klyne wrote: Hi Jatin, I can see two problems: 1) You use "Content-Type: applicatio

Re: Is there a way to stop a test if a specific value van not be found?

2009-10-13 Thread Ronan Klyne
Marco Pas wrote: Hi there, i was wondering if there is a way to stop a specific test and logging this as an error to the logs? I can succesfully terminate a test with an if-controller but then the tests stops and there is no logging done to a listener. Can i somewho dump a message to a listene

Re: Is there a way to stop a test if a specific value van not be found?

2009-10-14 Thread Ronan Klyne
Marco Pas wrote: Do you use a standard HTTP Sampler for that? Great tip by the way!! Thanks a lot! I'd use a BSF sampler with no code - it'll do nothing and be very quick to run. 2009/10/13 Ronan Klyne Marco Pas wrote: Hi there, i was wondering if there is a way

Run sampler in only one thread at a time.

2009-10-19 Thread Ronan Klyne
Hi all, I have a scenario to test in which there is one controller user and many subordinates. Each user is only allowed to log in from one place at a time (only one cookie string will be valid at once). I would like the subordinates to be able to send reports to the controller, and then ver

Re: Run sampler in only one thread at a time.

2009-10-20 Thread Ronan Klyne
d so as to have the posted data in memory when I do the comparison. I suppose that I could always write that out to a file regards deepak On Mon, Oct 19, 2009 at 8:03 AM, Ronan Klyne wrote: Hi all, I have a scenario to test in which there is one controller user and many subordinate

Re: OAuth with jMeter

2009-10-22 Thread Ronan Klyne
Deepak Shetty wrote: hi maybe im missing something, but how exactly does OAuth differ from any other HTTP web based app (the signing etc is still done at the server and passed around in hidden fields etc) is it not? No. The client is required to be able to sign the request using the access ke

Re: OAuth with jMeter

2009-10-23 Thread Ronan Klyne
e an existing tested implementation. And it is technically possible to use OAuth without SHA1, I think that the only other option is plaintext, which offers no security, and removes the major performance hits on the server. Cheers, Ronan regards deepak On Thu, Oct 22, 2009 at 12:19 AM, Ronan Klyn

Re: OAuth with jMeter

2009-10-26 Thread Ronan Klyne
test such an API... Ronan regards deepak On Fri, Oct 23, 2009 at 12:02 AM, Ronan Klyne wrote: Deepak Shetty wrote: That can't be right. You mean Internet explorer / firefox will sign this? As far as I understand this is between two websites , where one relies on the other

Re: Global data

2009-10-27 Thread Ronan Klyne
Andy Bell wrote: Hi I'm writing concurrency tests for a data insertion web service. The database table has a unique key field (it cannot be autoincremented :-( ) so I'm trying to get JMeter to generate unique keys for me. I need to: 1) Have a starting vlue that is globally shared between all t

Re: Data Question

2009-10-29 Thread Ronan Klyne
Carl Shaulis wrote: Hello, By the way this is an active and extremely responsive forum, so THANK YOU! I have a question regarding some data observations. We ran a load test using a script with 5 thread groups. We save the data into a .csv file then import the data into MySQL. Some of the req

Re: Accept Terms and Conditions checkbox not working through jMeter

2009-12-04 Thread Ronan Klyne
Harry_ wrote: Thank you so much for looking into the files Deepak. I am sorry I could not reply earlier. I will check about _utmv and will let you know how it worked asap. It's a Google analytics cookie. I've checked the headers you posted, and I note that JMeter is not sending a Host h

Finding the source of a javascript error

2009-12-08 Thread Ronan Klyne
Hi all, I've just started seeing a JavaScript error in jmeter.log when I try to start a test. - To unsubscribe, e-mail: jmeter-user-unsubscr...@jakarta.apache.org For additional commands, e-mail: jmeter-user-h...@jakarta.apac

Finding the source of a javascript error

2009-12-08 Thread Ronan Klyne
Hi all, I've just started seeing a JavaScript error in jmeter.log when I try to start a test. I use JavaScript in many parts of my test script, and I have looked at the recently changed ones for obvious errors - none found. The error is only hinted at by this traceback: 2009/12/08 14:35:42 E

Re: Finding the source of a javascript error

2009-12-08 Thread Ronan Klyne
sebb wrote: On 08/12/2009, Ronan Klyne wrote: Hi all, I've just started seeing a JavaScript error in jmeter.log when I try to start a test. I use JavaScript in many parts of my test script, and I have looked at the recently changed ones for obvious errors - none found. The err

Re: Finding the source of a javascript error

2009-12-08 Thread Ronan Klyne
sebb wrote: On 08/12/2009, Ronan Klyne wrote: sebb wrote: On 08/12/2009, Ronan Klyne wrote: Hi all, I've just started seeing a JavaScript error in jmeter.log when I try to start a test. I use JavaScript in many parts of my test script, and I have look

Re: Finding the source of a javascript error

2009-12-08 Thread Ronan Klyne
sebb wrote: Thread Group - Ramp Up. All of those are of this form: ${__javaScript(2*${ramp_up_secs_per_thread})} Is it allowed to nest the '${}' construct in this way? Yes. The error message suggests you may have used: ${__javaScript(2*${ramp_up_secs_per_thread}

Re: Finding the source of a javascript error

2009-12-09 Thread Ronan Klyne
sebb wrote: On 08/12/2009, Ronan Klyne wrote: sebb wrote: Thread Group - Ramp Up. All of those are of this form: ${__javaScript(2*${ramp_up_secs_per_thread})} Is it allowed to nest the '${}' construct in this way? Yes. The err

Re: Accept Terms and Conditions checkbox not working through jMeter

2009-12-11 Thread Ronan Klyne
The parameter 'form_build_id' inthe POSTed data is different between the two requests. Is this value being extracted from the previous page and correctly substituted? Ronan On 02/12/2009 20:59, Harry_ wrote: I checked the headers using "Live HTTP Headers" and in "View Result Tree". The

Re: Accept Terms and Conditions checkbox not working through jMeter

2009-12-11 Thread Ronan Klyne
has_js' is being set by client JS, and checked on the server? I have no idea why someone might write a program this way, but it could happen # r Regards Ronan Klyne-2 wrote: The parameter 'form_build_id' inthe POSTed data is different between the two requests. Is t

Re: Accept Terms and Conditions checkbox not working through jMeter

2009-12-11 Thread Ronan Klyne
ks a ton for looking into this Ronan.. I added this Cookie as User defined Cookie... But still the page is not getting updated. Regards Ronan Klyne-2 wrote: On 11/12/2009 15:03, Harry_ wrote: Thanks for the Reply Ronan... Yes I have already extracted the form ID and used it in the PO

Re: Accept Terms and Conditions checkbox not working through jMeter

2009-12-15 Thread Ronan Klyne
lp with the specifics of installing it... Ronan Regards Harry_ wrote: I will do that Ronan. Thanks a lot for your time. Can you please let me know where I could download wireshark for Ubuntu. I can see only Mac and Win downloads. Regards Ronan Klyne-2 wrote: I can't s

Simple newbie question - how to time a set of requests.

2007-07-23 Thread Ronan Klyne
suspect I'm using them incorrectly. Help would be greatly appreciated... Ronan -- Ronan Klyne Business Collaborator Developer Tel: +44 (0)870 163 2555 [EMAIL PROTECTED] www.groupbc.com - To unsubscribe, e-mail: [

Re: Simple newbie question - how to time a set of requests.

2007-07-23 Thread Ronan Klyne
t; -Original Message- > From: Ronan Klyne [mailto:[EMAIL PROTECTED] > Sent: Monday, July 23, 2007 6:49 AM > To: JMeter Users List > Subject: Simple newbie question - how to time a set of requests. > > Hello all, > > I am trying to measure the time taken for a set o

Listeners saving data to a file.

2007-07-24 Thread Ronan Klyne
istener it is configured in? Thanks, # r -- Ronan Klyne Business Collaborator Developer Tel: +44 (0)870 163 2555 [EMAIL PROTECTED] www.groupbc.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-ma

Re: Clean of the 'voir l'arbre des résultat' datas (see the result as tree)

2007-07-24 Thread Ronan Klyne
Run menu -> Clear (Ctrl+Shift+E) # r -- Ronan Klyne Business Collaborator Developer Tel: +44 (0)870 163 2555 [EMAIL PROTECTED] www.groupbc.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Variables in log file names

2007-07-27 Thread Ronan Klyne
espite having a variable set called 'log_prefix'. Is what I want to do possible? Am I going about it the right way? Is there any way to get the data from separate test runs in separate files/directories? Ronan -- Ronan Klyne Business Collaborator Developer Tel: +44 (0)870

Re: Variables in log file names

2007-08-09 Thread Ronan Klyne
pache.org/jmeter/usermanual/functions.html#predefinedprops That's exactly what I need - thankyou kindly :D # r -- Ronan Klyne Business Collaborator Developer Tel: +44 (0)870 163 2555 [EMAIL PROTECTED] www.groupbc.com

Re: Extracting data to multiple variables.

2007-08-10 Thread Ronan Klyne
bat' on Wind0ws or 'jmeter' on Linux. When you find it, run it... # r -- Ronan Klyne Business Collaborator Developer Tel: +44 (0)870 163 2555 [EMAIL PROTECTED] www.groupbc.com - To unsubscribe, e-mail: [EMA

Extracting data to multiple variables.

2007-08-10 Thread Ronan Klyne
Greetings all, I have a regex extractor pulling data from a page successfully, and putting it into a variable. The hitch is, I need the data copied into a second variable too, and I can't work out thow to do it... Any pointers folks? Cheers, Ronan -- Ronan Klyne Business Collabo

Re: Extracting data to multiple variables.

2007-08-10 Thread Ronan Klyne
sebb wrote: > A crude way would be to duplicate the RE with a different name. > > Otherwise, the User Parameters Pre-Processor can be used to create a > new variable: > > NEWVAR ${OLDVAR} > The pre-processor method is a good one for my purposes, thanks... # r ---

Re: Fwd: jmeter + hibernate issue

2007-08-13 Thread Ronan Klyne
ernate.HibernateException: /bingo.load.test.hibernate.cfg.xml not > found Check the two file names - I think this may be the source of your problem. It doesn't look like JMeter to me. # r -- Ronan Klyne Business Collaborator Developer Tel: +44 (0)870 163 2555

Re: Fwd: jmeter + hibernate issue

2007-08-14 Thread Ronan Klyne
Ashwin Tigdoli wrote: > Hi, > > Ok so you mean to say there is something to do with my build.xml? > Would appreciate if you can provide some direction if you knowthanks in > advance. > > > On 8/14/07, Ronan Klyne <[EMAIL PROTECTED]> wrote: >> Ashwin Tigd

Re: Beanshell pre-processor

2007-08-16 Thread Ronan Klyne
, the key and the value, like so: vars.put("Relation", vars.get("Relation2")); # r -- Ronan Klyne Business Collaborator Developer Tel: +44 (0)870 163 2555 [EMAIL PROTECTED] www.groupbc.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Randomly selecting one of several XPath matches

2007-08-20 Thread Ronan Klyne
o have the XPath extractor match several nodes, and return one of them at random? Cheers, Ronan -- Ronan Klyne Business Collaborator Developer Tel: +44 (0)870 163 2555 [EMAIL PROTECTED] www.groupbc.com - To unsubscri

Re: Randomly selecting one of several XPath matches

2007-08-20 Thread Ronan Klyne
helps, Stuart Exactly the thing - many thanks :) # Ronan -- Ronan Klyne Business Collaborator Developer Tel: +44 (0)870 163 2555 [EMAIL PROTECTED] www.groupbc.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For ad

Re: Use parameter in parameter

2007-08-29 Thread Ronan Klyne
uality Assurance Engineer > > Praxell Inc. > > http://www.praxell.com <http://www.praxell.com/> > > > Hi Ori, Sounds like the User Parameters pre-processor would be able do it for you... # r -- Ronan Klyne Business Collaborator De

Re: Use parameter in parameter

2007-08-29 Thread Ronan Klyne
tead of adding component per jmx - to use 1 variable) > Look up the Include Controller (http://jakarta.apache.org/jmeter/usermanual/component_reference.html#Include_Controller) - I think this will do what you need (although I've not done it myself)... # r -- Ronan Klyne Business

Re: Append to response file

2007-09-03 Thread Ronan Klyne
ttp://www.praxell.com <http://www.praxell.com/> > > > Yes, it is possible. I use the following setup to do it: Test plan + Save Results to File + Thread Group + Tests here # r -- Ronan Klyne Business Collaborator Develope

Handling errors gracefully in sets of pages

2007-09-04 Thread Ronan Klyne
be able to tell JMeter this. Can I do something akin to the following? Try + A1 + A2 + A3 Catch + Handle the problem. Thanks in advance, Ronan -- Ronan Klyne Business Collaborator Developer Tel: +44 (0)870 163 2555 [EMAIL PROTECTED] www.g

Inexplicable NPE in log

2007-09-05 Thread Ronan Klyne
a:309) at java.lang.Thread.run(Unknown Source) -- Ronan Klyne Business Collaborator Developer Tel: +44 (0)870 163 2555 [EMAIL PROTECTED] www.groupbc.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Re: Inexplicable NPE in log

2007-09-05 Thread Ronan Klyne
2.3RC4 # r sebb wrote: > Which version of JMeter? > > On 05/09/07, Ronan Klyne <[EMAIL PROTECTED]> wrote: >> Hi all, >> >> I am seeing lots of copies of the below NullPointerException in >> jmeter.log, but I can't see which part of the test is

Re: Handling errors gracefully in sets of pages

2007-09-05 Thread Ronan Klyne
t("comment_" + user, ""); sampler.addArgument("group_id_" + user, "0"); sampler.addArgument("due_date_" + user, ""); } Am I to infer from your comment that this is unwise? # r -- Ronan Klyne Business Collaborator

Re: Handling errors gracefully in sets of pages

2007-09-05 Thread Ronan Klyne
ng about the JMeter code base to discover that it's not possible/really silly) # r -- Ronan Klyne Business Collaborator Developer Tel: +44 (0)870 163 2555 [EMAIL PROTECTED] www.groupbc.com - To unsubscribe, e-m

Re: Inexplicable NPE in log

2007-09-05 Thread Ronan Klyne
stener, and see > what happens? > > Also, what sampler(s) are you using? > It would be useful to know why the response message is being set to null. > [If not set, it defaults to the empty string] > > S/// > On 05/09/07, Ronan Klyne <[EMAIL PROTECTED]> wrote: >>

Re: Inexplicable NPE in log

2007-09-05 Thread Ronan Klyne
Ronan Klyne wrote: > It turned out to be due to a BeanShell Sampler doing: > ResponseCode = -1 ; > Ooops - disregard that - just a coincidence. I'm a little pushed for time, and I'll try your suggestions tomorrow... # r -- Ronan Klyne Business Collaborator Develo

Re: Inexplicable NPE in log

2007-09-05 Thread Ronan Klyne
n bytes: 0 Response code: 302 Response message: null Response headers: HTTP/1.1 302 Date: Thu, 06 Sep 2007 06:39:45 GMT Server: Apache Set-Cookie: .. Expires=Fri, 07-Sep-2007 06:39:45 GMT; Location: http://uutest.withbc.com/bc/bc.cgi Content-Length: 0 Connection: close Content-Type: text/pla

Re: Handling errors gracefully in sets of pages

2007-09-06 Thread Ronan Klyne
ation" (And quoting a bit of the code). Should it be working when I do this? # r -- Ronan Klyne Business Collaborator Developer Tel: +44 (0)870 163 2555 [EMAIL PROTECTED] www.groupbc.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Handling errors gracefully in sets of pages

2007-09-06 Thread Ronan Klyne
sebb wrote: > On 06/09/07, Ronan Klyne <[EMAIL PROTECTED]> wrote: >>> By the way, BeanShell tends to leak more memory if the script is on >>> the screen; using a file seems better. Best is probably to define the >>> script as a method in a startup file and then

Re: Inexplicable NPE in log

2007-09-06 Thread Ronan Klyne
sebb wrote: > On 06/09/07, sebb <[EMAIL PROTECTED]> wrote: >> On 06/09/07, Ronan Klyne <[EMAIL PROTECTED]> wrote: >>> sebb wrote: >>>> Looking further at the stack trace shows that it is caused by a >>>> sub-sample with ResponseMessage=

Re: Handling errors gracefully in sets of pages

2007-09-10 Thread Ronan Klyne
there I see no option to source pre/post-processors from files. In this situation, would it help to keep leaks to a minimum if I had a single line of script on screen calling a function? # r -- Ronan Klyne Business Collaborator Developer Tel: +44 (0)870 163 2555 [EMAIL PROTECTED] www

Exception running in non-gui mode

2007-09-10 Thread Ronan Klyne
not set up alias MailerVisualizer java.lang.NoClassDefFoundError: javax/mail/MessagingException Ronan -- Ronan Klyne Business Collaborator Developer Tel: +44 (0)870 163 2555 [EMAIL PROTECTED] www.groupbc.com - To unsubscribe, e-mail: [EMAIL P

Nasty looking NPE in jmeter.thread.JMeterThread

2007-09-10 Thread Ronan Klyne
at org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:285) at java.lang.Thread.run(Unknown Source) Thanks in advance, Ronan -- Ronan Klyne Business Collaborator Developer Tel: +44 (0)870 163 2555 [EMAIL PROTECTED] www.groupb

Re: Handling errors gracefully in sets of pages

2007-09-10 Thread Ronan Klyne
sebb wrote: > On 10/09/2007, Ronan Klyne <[EMAIL PROTECTED]> wrote: >> sebb wrote: >>> By the way, BeanShell tends to leak more memory if the script is on >>> the screen; using a file seems better. Best is probably to define the >>> script as a method in

Re: Nasty looking NPE in jmeter.thread.JMeterThread

2007-09-10 Thread Ronan Klyne
sebb wrote: > This should not happen. Which version of JMeter are you running? "jakarta-jmeter-r573042_bin" - just after 2.3RC4 # r > On 10/09/2007, Ronan Klyne <[EMAIL PROTECTED]> wrote: >> Hi all, >> >> Anyone know what this trace means? - I&#

Memory usage

2007-09-12 Thread Ronan Klyne
Ronan -- Ronan Klyne Business Collaborator Developer Tel: +44 (0)870 163 2555 [EMAIL PROTECTED] www.groupbc.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Using Xpath Extractor how to fetch the particular value

2007-09-13 Thread Ronan Klyne
the number of matches, and 'Patchdownload_1', 'Patchdownload_2', 'Patchdownload_3'... will hold the matched data. # r -- Ronan Klyne Business Collaborator Developer Tel: +44 (0)870 163 2555 [EMAIL PROTECTED] www.groupbc.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Memory usage

2007-09-13 Thread Ronan Klyne
wer than I thought I'd put in, none of them XPath. I do, however, have a large number of XPath Extractors. Do you think these could be causing the problem? Would it be better if they were replaced with regex extractors? # r -- Ronan Klyne Business Collaborator Developer Tel: +4

Re: Memory usage

2007-09-13 Thread Ronan Klyne
with more ram on order. This seems like a lot of memory for a 5 thread test... # r -- Ronan Klyne Business Collaborator Developer Tel: +44 (0)870 163 2555 [EMAIL PROTECTED] www.groupbc.com - To unsubscribe, e-mail: [EMAI

Re: Memory usage

2007-09-13 Thread Ronan Klyne
Bj wrote: > Very hungry threads ! > There's obvously a memory leak somewhere. > How long it's running with 5 threads ? > About 10 minutes. # r -- Ronan Klyne Business Collaborator Developer Tel: +44 (0)870 163 2555 [EMAIL PROT

Re: Memory usage

2007-09-14 Thread Ronan Klyne
sebb wrote: > On 13/09/2007, Ronan Klyne <[EMAIL PROTECTED]> wrote: >> Bj wrote: >>> Very hungry threads ! >>> There's obvously a memory leak somewhere. >>> How long it's running with 5 threads ? >>> >> About 10 minutes. > &

Re: Storing and Comparing Results

2007-10-08 Thread Ronan Klyne
. > > Thanks > > I prefer to record the data as XML and process it with XSL, as I've had plenty of experience of XSL. You could open the CSV files in your favourite spreadsheet program, and do whatever processing you want there. # r -- Ronan Klyne Busin

Re: Regular Expression -- Help

2007-11-14 Thread Ronan Klyne
the string > invokeEvent('5_290_act', true)" class="button">Add > > It is just happening with this particular variable. > -- Ronan Klyne Business Collaborator Developer Tel: +44 (0)870 163 2555 [EMAIL PROTECTED] www.groupbc.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Need help to explain JMeter error

2007-11-16 Thread Ronan Klyne
sure you're trying to connect to the right server, and that the server is on, not firewalled, etc. > > The stressed application is requested through internet (not on the same > LAN). I'd advise against this unless you've got mighty bandwidt

Odd behaviour in XPath Extractor

2008-01-31 Thread Ronan Klyne
), "&") There is no such element, so it should also return "ERROR". But it returns "" instead. Any thoughts/suggestions, anyone? # r -- Ronan Klyne Business Collaborator Developer Tel: +44 01189 028518 [EMAIL PROTECTED] www.groupbc.com

Re: Odd behaviour in XPath Extractor

2008-01-31 Thread Ronan Klyne
sebb wrote: On 31/01/2008, Ronan Klyne <[EMAIL PROTECTED]> wrote: Hello all, I'm having a little trouble with the XPath Extractor. The problem presents itself whenspecified element is not present in the page. Instead of the expression returning my default value of "ERROR"

Re: Whether Jmeter can act as a server?

2008-02-12 Thread Ronan Klyne
is matched in the reports? What kind of sampler Can we use for this scenario? You must already be using a sampler if you have got JMeter to send a request. You can do this check using a Response Assertion. Add one to your sampler, and set it to check the response body for a particular string.

Re: Support for WS-Security

2008-02-13 Thread Ronan Klyne
HTTPSampler... How's your Java? Ronan -- Ronan Klyne Business Collaborator Developer Tel: +44 01189 028518 [EMAIL PROTECTED] www.groupbc.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: ConnectException using JMeter

2008-02-13 Thread Ronan Klyne
u haven't told JMeter to use HTTPS when it should use HTTP (or vice versa). When you say "the test was run in localhost", do you mean that your web server under test is on the same machine as JMeter? # r -- Ronan Klyne Business Collaborator Developer

Re: ConnectException using JMeter

2008-02-13 Thread Ronan Klyne
set on the Coyote Connector? The default is 10, and this could cause problems for you - after ten connections are unanswered it refused any more. Try upping this to 50 (still a safe value), and see if you stil have problems... This doesn't look to me like a JMeter problem, but I'm

Re: Hidden field value

2008-02-27 Thread Ronan Klyne
here is to use an XPath extractor, with an XPath expression like: //[EMAIL PROTECTED]"hidden" and @name="rqpers"]/@value # r -- Ronan Klyne Business Collaborator Developer Tel: +44 01189 028518 [EMAIL PROTEC

Re: issue with 100000 threads

2008-02-28 Thread Ronan Klyne
't handle that many active threads very well... That probably wasn't what you wanted to hear, but I hope it helps... # r -- Ronan Klyne Business Collaborator Developer Tel: +44 01189 028518 [EMAIL PROTECTED] www.groupbc.com ---

Re: Initial problem on Jmeter

2008-03-03 Thread Ronan Klyne
ick on run. Open above described link and do some navigations. But jmeter fails to record the script and it also not shown in thread group. Have you set your web browser to use the proxy server? (If you don't JMeter will not see any traffic, and won't be able to record it)

Re: high resolution timer

2008-03-12 Thread Ronan Klyne
n of Windows. If you run Windows, you won't get any better. If you run JMeter on another OS (I'd recommend Linux) you'll get much finer results... # r -- Ronan Klyne Business Collaborator Developer Tel: +44 01189 02851

Re: Regular Expression Extractor

2008-03-13 Thread Ronan Klyne
et use the activation code. Try "Their activation code is ([0-9]+)", and using $1$ as your template. # r -- Ronan Klyne Business Collaborator Developer Tel: +44 01189 028518 [EMAIL PROTECTED] www.groupbc.com ---

Re: Regular Expression for ViewState

2008-03-18 Thread Ronan Klyne
gchaudhari wrote: sebb-2-2 wrote: On 18/03/2008, gchaudhari <[EMAIL PROTECTED]> wrote: Hi, Can anybody please help me generate a regular expression for a ViewState value which is dynamically generated. An example of viewstate value is as follows: rO0ABXVyABNbTGphdmEubGFuZy5PYmplY3Q7kM5

Re: Timestamp issue

2008-03-25 Thread Ronan Klyne
out that JMeter had been appending to logfiles... I have since got much more careful about cleanign up before and after a test run. # r -- Ronan Klyne Business Collaborator Developer Tel: +44 01189 028518 [EMAIL PROTECTED] www.groupbc.com

  1   2   >