Can JBlitz handle form based authentication ?
Yes. J2EE form based authentication is just a standardized username / password login form that is used to authenticate the client. To include form based authentication into your test case, the easiest method is to add an initial ‘login’ page that represents the login form. This page must send over the username and password using standard naming conventions. The form action must be j_security_check. A typical URL for your form based authentication login page might be: j_security_check?j_username=myusername&j_password=mypassword where myusername and mypassword should be substituted with the username / password for login. Make sure the request method is POST. Note, unless all connections are over SSL, all data is sent over as clear text. If SSL is used to encrypt the login information, select the ‘Secure (https)’ option in the page settings dialog.