On 19/09/2007, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > Hi, > > I'm trying to simulate many user sessions (15,000 or so) for testing a > web application, and I want those users to build up over a couple of > iterations (say 100 per iteration). I thought just having a thread > group with a HTTP Cookie Manager that clears it's cookies after each > iteration would suffice, but it seems that that the test reuses the > same sessions for each iteration.
That works for me with Google (for example). > Anyone tried something like this before? Any pointers at why this > doesn't work/ what I can do to make it work? I'm wild guessing this > might be because the test reuses the threads from the thread pool > rather than recreating them. Depends on the web application. If it has a login screen, then make sure the test script logs out. If it relies on connections, then the application is probably broken. But you may be able to test by ensuring you clear "Keep Alive" on the last sample per user. Using HttpClient should also help as it uses per-thread connections. If the web app relies on IP address, and is for general use over the internet, then it is definitely broken, as it won't work over proxies. > Regards, > > Eelco > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

