And what URL do you use for the test?
This one?
http://<server>/<path_to_webpage_with_the_form>/SignInPage.aspx?ru=http%3a%2f%2f10.77.8.205%2fwett%2fDefault.aspx&to=-2&aid=TestSignInPage&ip=10.77.13.38&lou=http%3a%2f%2f10.77.8.205%2fHBWebApp%2fHBPassportService%2fTestPage%2fTestLogOff.aspx
Regards
Alex
can't monitor a web page which need to authorize
Actually...leo1631 wrote: <form name="serverForm" method="post" action="SignInPage.aspx?ru=http%3a%2f%2f10.77.8.205%2fwett%2fDefault.aspx&to=-2&aid=TestSignInPage&ip=10.77.13.38&lou=http%3a%2f%2f10.77.8.205%2fHBWebApp%2fHBPassportService%2fTestPage%2fTestLogOff.aspx" id="serverForm">
<input type="hidden" name="__VIEWSTATE" value="......" />
<input name="SignInControl:_ctl0:clientEnv" id="SignInControl__ctl0_clientEnv" type="hidden" />
<input name="SignInControl:_ctl0:signInName" type="text" value="leo1631" id="SignInControl__ctl0_signInName" class="flatInput" size="32" />
<input name="SignInControl:_ctl0:password" id="SignInControl__ctl0_password" type="password" size="32" class="flatInput" />
<input type="submit" name="SignInControl:_ctl0:SignInButton" value="login" id="SignInControl__ctl0_SignInButton" class="flatButton" style="width:64px;" />
<input id="SignInControl__ctl0_dontSaveUserName" type="checkbox" name="SignInControl:_ctl0:dontSaveUserName" />
-------------------------------------------------------------
As Yoorix told me ,I provide in "Post data" field of HTTP test with this string :
--------------------------------------------------------------------
SignInControl:_ctl0:signInName=leo1631&SignInControl:_ctl0:password=123456
------------------------------------------------------------------------------------
But it does not work, it seems just like do not post the string at all.

The last thing I can suggest you is concatenate in post data filed all form fields, including submit button, i.e:
SignInControl:_ctl0:signInName=leo1631&SignInControl:_ctl0:password=123456&SignInControl:_ctl0:SignInButton=login&SignInControl:_ctl0:clientEnv=&SignInControl:_ctl0:dontSaveUserName=yes
And you, perhaps, should add to this line __VIEWSTATE variable, but I'm not sure. You should try it yourself in different ways.
Why do not you try Get method for result string?
Regards,
Yoorix
Not that one, the URL of the test is like "http://10.77.8.222/appweb/default.aspx", and then redirected to the login page like"http://10.77.8.205/signinpage.aspx?...."KS-Soft wrote:And what URL do you use for the test?
This one?
http://<server>/<path_to_webpage_with_the_form>/SignInPage.aspx?ru=http%3a%2f%2f10.77.8.205%2fwett%2fDefault.aspx&to=-2&aid=TestSignInPage&ip=10.77.13.38&lou=http%3a%2f%2f10.77.8.205%2fHBWebApp%2fHBPassportService%2fTestPage%2fTestLogOff.aspx
I have tried Get method use URL like "http://10.77.8.222/webapp.aspx?SignInCo ... ord=123456", not work.Yoorix wrote: Why do not you try Get method for result string?
Can Get method work if the form in login page uses POST method?