Re: where to use $__split

2008-01-24 Thread sebb
On 23/01/2008, matthew sporleder <[EMAIL PROTECTED]> wrote: > I am extracting some stuff with a regex and using a foreach loop, but > need to $__split the regex match into various things for my sampler. > Where is the appropriate place to execute a function so I can access > my splitVAR_n's? One p

Re: setproperty help

2008-01-24 Thread sebb
On 24/01/2008, Ori Marco <[EMAIL PROTECTED]> wrote: > Found it , should use __P to get variable and can't reference to new > global variable as ${ StartDateDB } > > Why can't global varaiables be address as ${var}? > There are no global variables. There are JMeter thread variables, which are acce

RE: setproperty help

2008-01-24 Thread Ori Marco
Found it , should use __P to get variable and can't reference to new global variable as ${ StartDateDB } Why can't global varaiables be address as ${var}? Ori Marko Quality Assurance Engineer Praxell Inc. http://www.praxell.com -Original Message- From: Ori Marco [mailto:[EMAIL PROTECTE

RE: Jmeter login help

2008-01-24 Thread Psarras, Ioannis
This is working great now (used the badboy method). Thanks a lot. Just another quick question. I would also like to check if a database is up and running or ideally capture screenshots for everyrequest made through jmeter. Is this possible? Thanks, Yannis -Original Message- From: Joseph

RE: Jmeter login help

2008-01-24 Thread Joseph Ribin Roy
Add listener, View Result Tree wherein you will be able to see the response data in text or html. You can verify the values from data base with the response data -Original Message- From: Psarras, Ioannis [mailto:[EMAIL PROTECTED] Sent: Thursday, January 24, 2008 4:11 PM To: JMeter Users L

RE: Jmeter login help

2008-01-24 Thread Joseph Ribin Roy
To capture https request you can do it in 2 ways HTTPS spoofing to record https based request http://jakarta.apache.org/jmeter/usermanual/component_reference.html or you can make use of another tool badboy to record the scri

RE: Jmeter login help

2008-01-24 Thread Psarras, Ioannis
The proxy cant capture these actions because its an ssl page :S Yannis Psarras HFS Technology Goldman Sachs International * +44 (20) 7051-0784 | * +44 075-1753-0910 * [EMAIL PROTECTED] -Original Message- From: Joseph Ribin Roy [mailto:[EMAIL PROTECTED] Sent: Thursday, January 24, 2008

RE: Jmeter login help

2008-01-24 Thread Joseph Ribin Roy
When you Record using Jmeter it will capture all kind of request (redirect and redirected pages) there you can populate user name and password. -Original Message- From: Psarras, Ioannis [mailto:[EMAIL PROTECTED] Sent: Thursday, January 24, 2008 3:33 PM To: JMeter Users List Subject: RE: J

RE: Jmeter login help

2008-01-24 Thread Psarras, Ioannis
But how am I going to get the url of the login page since I don't have it till the first request is issued? Sorry but I am new to this. Yannis Psarras HFS Technology Goldman Sachs International * +44 (20) 7051-0784 | * +44 075-1753-0910 * [EMAIL PROTECTED] -Original Message- From: Eldh

RE: Jmeter login help

2008-01-24 Thread Eldho John
You can add an http sampler (after the first sampler) for the login page and uncheck the 'follow redirect checkbox' in the first sampler. -Original Message- From: Psarras, Ioannis [mailto:[EMAIL PROTECTED] Sent: Thursday, January 24, 2008 3:15 PM To: jmeter-user@jakarta.apache.org Subjec

setproperty help

2008-01-24 Thread Ori Marco
Hi I failed to use setproperty option. I need to make local variable (e.g. timex) as global variable(e.g. StartDateDB). I use the command in user parameters as ${__setProperty(StartDateDB,'${ timex }')} or ${__setProperty(StartDateDB,${timex})} or ${__setProperty(StartDateDB,timex)} bu

Jmeter login help

2008-01-24 Thread Psarras, Ioannis
Hi all, I just started using jmeter yesterday to set up a test plan for some local apps. What I find difficult is how am I going to get around the login authentication. What happens is that when a web page is accessed the user is redirected to the login page (the url is created dynamically). I ca