|
Sometimes submitting the form directly is not sufficient. Forms on
web pages can contain dynamic hidden variables, such as
a viewstate for session tracking. This means the form must be
opened, filled out, and submitted, instead of simply submitting a
pre-defined action URL.
This is achievable with the Custom Primer Variables setting.
Instead of setting Custom Primer URL to the action of the login
form, you set it to the URL of the page that contains the form.
Custom Primer Variables is a URL-encoded list of name/value
pairs to set on the Custom Primer URL page.
When Custom Primer Variables is set, the
Custom Primer URL is fetched, and then the variables specified
in Custom Primer Variables are used on the form, and then
that form is submitted.
For example, let's say there's a pleaseLogin.asp page that
submits to checkLogin.asp, and the form contains a dynamic
state that has to be included or checkLogin.asp will reject the
login. If you set Custom Primer URL to
http://login.acme.com/pleaseLogin.asp
and set Custom Primer Variables to
User=Admin&Pass=open%26close
The pleaseLogin.asp page will be fetched, the form field
User will be set to Admin and Pass will be set to
open&close (note the URL-encoding), and then form on the
pleaseLogin.asp page will be submitted, going to
checkLogin.asp.
This means that if the form on pleaseLogin.asp contains
<input type="hidden" name="sessionstate" value="abc123xyz"/>
then that hidden variable will be submitted along with the rest of the
form.
Copyright © Thunderstone Software Last updated: Thu Mar 11 16:13:32 EST 2010
|