Re: Simulating multiple threads using same login

2012-09-06 Thread Adrian Speteanu
Hi, Usually the server uses a cookie to keep session for each individual and unique app/browser that tries to connect. This is not always tied to the a user's credentials so it is possible to login with a single set of credentials and test the login realistically. So you just need to make sure wha

RE: Simulating multiple threads using same login

2012-09-06 Thread Anthony Johnson
It shouldn't matter in respect to jmeter functionality, but server-side business logic could be an issue such as: - caching of login credentials - only allowing x number of active session at a time. - logout logs the user out completely(close all sessions) I personally would question the usefulne