How to Logout with Once Only Controller?

2007-07-04 Thread Ðavîd Låndïs
The JMeter user guide describes how to login to the application using the Once Only Controller. Everything under that controller is executed only the first time through the loop for that Thread Group. Is there a Controller (or other way) to execute a group of requests only the *last* time through

Re: POST requests with Access Log Sampler

2007-07-04 Thread sebb
Have you tried Http Request Defaults? On 04/07/07, Yuval Kantor <[EMAIL PROTECTED]> wrote: Hello everybody, I would like to test a site using the Access Log Sampler. The problem is that about 5% of the HTTP requests are POST method. The Access Log Sampler can't send those requests since the

POST requests with Access Log Sampler

2007-07-04 Thread Yuval Kantor
Hello everybody, I would like to test a site using the Access Log Sampler. The problem is that about 5% of the HTTP requests are POST method. The Access Log Sampler can't send those requests since the POST arguments are not saved in the access log. I thought of sending default stubs when t

Re: struts and JMeter

2007-07-04 Thread sebb
Tokens etc are normally extracted using the Regular Expression Post-Processor (RE PP), not the RE Function. I suggest you record a new very short test, just sufficient to generate and use a token. Find the incoming token in the HTML and extract it using the RE PP. Find the outgoing uses of the t

struts and JMeter

2007-07-04 Thread aidy lewis
Hi I am stilling haveing trouble running tests in this strut application. I have added this ${__regexFunction(,$1$,1,,null,token)} as a parameter to each test plus even deleted all the org.apache.struts.taglib.html.TOKEN requests. Still the HTML response is a 'page expired error'. I cannot thin

Re: Sequence of requests

2007-07-04 Thread sebb
As far as I can tell, the throughput timer already does what you are trying to do. However, a Timer will not run on its own, so you need to add a dummy sampler. For example the Test Action sampler; then add the Throughput timer as its child. S. On 04/07/07, Lists <[EMAIL PROTECTED]> wrote: Ok,

Re: Sequence of requests

2007-07-04 Thread Lists
Ok, looking through the source i can see each thread has it's own concept of a start time, so it seems this isnt quite possible to do. I guess perhaps the simplest solution which i shall try shortly is to use a custom sampler and then put the actual delay in the sampler itself. or even to copy s