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);
Variables sUserPass and nUserPassLen should be declared.
Explore posts in the same categories: Performance testing

Tags: , , , , , ,

You can comment below, or link to this permanent URL from your own site.

Comment: