web_util_set_request_body
Sets a string to be the request body for the next request sent in the Conversation An Asynchronous Conversation is a series of related web tasks, including tasks caused by redirection. An Asynchronous Conversation starts with the request for the desired response, includes all the requests and responses that are caused by this request (authentication, redirection, and so on) and ends when the desired response is received or when the series of interactions is canceled..
int web_util_set_request_body (const char * aBodyStr);
Argument | Description |
---|---|
aBodyStr | The string to be set as the new request body. |
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: aBodyStr
General Information
This is a utility function that can be called from callback routine Request Callback.