How to simulate HTTP Basic Authentication in Borland SilkPerformer
How Basic Authentication works: http://tools.ietf.org/html/rfc2617#page-5
Code:
WebBase64Encode(sUserPass, 200, nUserPassLen, “username:password”);
sUserPass := “Basic ” + sUserPass;
WebHeaderAdd(“Authorization”, sUserPass);
sUserPass := “Basic ” + sUserPass;
WebHeaderAdd(“Authorization”, sUserPass);
Variables sUserPass and nUserPassLen should be declared.
Tags: automation, basic authentication, Basic Authentication Scheme, Performance testing, SilkPerformer, WebBase64Encode, WebHeaderAdd
You can comment below, or link to this permanent URL from your own site.