LoadRunner Correlation

From PeformIQ Upgrade
Revision as of 13:56, 20 March 2008 by PeterHarding (talk | contribs) (New page: =Scraping Binary Data within LoadRunner Scripts= Using Winsocket... The left boundary is composed of 3F and DD. The right boundary is composed of CC and b. So: <pre> web_reg_save_param...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Scraping Binary Data within LoadRunner Scripts

Using Winsocket...

The left boundary is composed of 3F and DD. The right boundary is composed of CC and b.

So:

web_reg_save_param("ParamName",
                   "LB/BIN=\\x3F\\xDD",
                   "RB/BIN=\\xCCb",
                   LAST);

For whichever boundary, use BIN with LB and RB, then web_reg_save_param() can be used with binary data.

Catpuring Data from HTML Page Headers