web_sjis_to_euc_param

Converts an SJIS string to EUC and assigns it to a parameter.

int web_sjis_to_euc_param( LPCSTR param_name, LPCSTR param_value_in_SJIS );
Argument
Description
object
An expression evaluating to an object of type WebApi. Usually web for Java. See also Function and Constant Prefixes.
param_name
The name of the parameter. No spaces are allowed.
param_value_in_SJIS
A null-terminated string in SJIS to be converted to EUC and assigned to the parameter.

Return Values

This function returns LR_PASS (0) on success, and LR_FAIL (1) on failure.

Parameterization

The following argument(s) can be parameterized using standard parameterization: param_name and param_value_in_SJIS

General Information

The web_sjis_to_euc_param function converts a null-terminated string encoded in SJIS to a string encoded in EUC, and assigns it to a parameter. You can use the lr_eval_string function to determine the value of the parameter.

During recording, VuGen converts an EUC string sent by the server to SJIS and sends it to an Action function. The web_sjis_to_euc_param function is added before the Action function, and its parameter is inserted into the Action function. During replay, VuGen uses the web_sjis_to_euc_param function to convert the string back to EUC and store it in a parameter. The parameter is then used for subsequent Action functions.

This function only applies to the Japanese Edition. It is supported for all web scripts.