Next Jmeter Release

2006-03-22 Thread Bill Gosse
Does anyone know when the next official release of JMeter will occur? BENEFITFOCUS.COM CONFIDENTIALITY NOTICE: This electronic message is intended only for the individual or entity to which it is addressed

RE: Next Jmeter Release

2006-03-22 Thread Bill Gosse
to do one soon, but tuits are in short supply, and there seem to be a few bugs that really ought to be fixed first if possible... S. On 22/03/06, Bill Gosse [EMAIL PROTECTED] wrote: Does anyone know when the next official release of JMeter will occur

RE: Registration with Different Usernames

2006-03-20 Thread Bill Gosse
You can cycle through a set of user names, ex. userid1 through userid100 with a Counter: http://jakarta.apache.org/jmeter/usermanual/component_reference.html#Cou nter The Counter can be attached to an HTTPRequest and its reference name can be appended to the end of a username parameter, ex

RE: Using Jmeter with Java Server Faces (Urgent help needed)

2006-03-17 Thread Bill Gosse
Have you successfully recorded any web application transaction? I've done a struts based app with no difficulty. Beware the proxy recorder won't work with HTTPS. -Original Message- From: Karimou LAWANI [mailto:[EMAIL PROTECTED] Sent: Friday, March 17, 2006 9:21 AM To: JMeter Users List

RE: jmeter and javascript

2006-03-10 Thread Bill Gosse
Here's an example: ${__javaScript(var myRegExp = /[']/g;${splitresult_2}.replace(myRegExp\,),invoicetype)} This example removes ' from the value contained in the jmeter var splitresult_2 and then assigns the final value to the jmeter var invoicetype. -Original Message- From: Eric Perler

Retrieve All Embedded Resources from HTML File?

2006-03-06 Thread Bill Gosse
Hi Guys, Is there some reason why Retrieve All Embedded Resources from HTML File is disabled by default in HTTP Request and HTTP Request Defaults? I can see that if I enable this it does impact my request results. Is enabling Retrieve All Embedded Resources from HTML File not considered a

RE: Retrieve All Embedded Resources from HTML File?

2006-03-06 Thread Bill Gosse
are changed, e.g, playing background sounds. S. On 06/03/06, Bill Gosse [EMAIL PROTECTED] wrote: Hi Guys, Is there some reason why Retrieve All Embedded Resources from HTML File is disabled by default in HTTP Request and HTTP Request Defaults? I can see that if I enable this it does impact my

RE: Need Clarification on usage of Rregular expression extractor

2006-03-01 Thread Bill Gosse
Try name=productId value=(.+?) -Original Message- From: Ganti, Venkata [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 01, 2006 6:39 PM To: JMeter Users List Subject: Need Clarification on usage of Rregular expression extractor Hi All, I'm trying to get number 10125 from the following

RE: How to configure when a cluster is using

2006-02-28 Thread Bill Gosse
Do you have a cookie manager in your thread group? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 28, 2006 10:57 AM To: jmeter-user@jakarta.apache.org Subject: How to configure when a cluster is using Hi together, our Webapplication is on

RE: Unable to start JMeterServer.bat

2006-02-02 Thread Bill Gosse
I had this problem. The jmeter_server.bat can't find the rmiregistry.exe in the PATH for some reason. This app is located in the bin directory of your JRE. I my case I just hard coded the path to it in my jmeter_server.bat. Look for the START rmiregistry entry in the file. I'm sure this

RE: Splitting on a blank space

2006-02-02 Thread Bill Gosse
Thanks! That fixed my problem. -Original Message- From: sebb [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 01, 2006 8:29 PM To: JMeter Users List Subject: Re: Splitting on a blank space On 01/02/06, Bill Gosse [EMAIL PROTECTED] wrote: Hi Guys, Does anyone know how

Splitting on a blank space

2006-02-01 Thread Bill Gosse
Hi Guys, Does anyone know how or if a string can be split on a blank space with the split function. Here's my first attempt that didn't work: ${__split(${username},splitusername, )} The username variable has bill gosse in it. My splitusername_1 variable gets the whole string while