revXMLRPC_GetRequest

Typefunction
DictionaryLCS
LibraryLiveCode Script
Syntax
revXMLRPC_GetRequest(<XMLRPCdocumentID>)
Associationsxml-rpc library
Summary

This function returns the request document that was executed and resulted in the response document.

Introduced2.5
OSmac, windows, linux, ios, android
Platformsdesktop, server, mobile
Parameters
NameTypeDescription
XMLRPCdocumentID

The number returned by the revXMLRPC_Execute function if it was executed successfully. If the revXMLRPC_GetRequest function encounters an error, it returns an error message starting with "xmlrpcerr" ..

Example
local tRequest
put revXMLRPC_GetRequest(tResponse) into tRequest
Values
NameTypeDescription
return

The request document that was executed and resulted in the response document. If an error was encountered during the execution of the XML-RPC request, you can retrieve the error by calling the revXMLRPC_Error function.

RelatedGlossary: LiveCode custom library, Standalone Application Settings, standalone application, function, XML-RPC
Function: revXMLRPC_GetResponse, revXMLRPC_Error, revXMLRPC_CreateRequest, revXMLRPC_Execute
Library: XML-RPC library
Securitydisk, process
Description

Use the revXMLRPC_GetRequest function to retrieve the original XML-RPC request whose execution resulted in the XML-RPC response document.

Important: The revXMLRPC_GetResponse function is part of the XML-RPC library. To ensure that the function works in a standalone application, you must include this custom library when you create your standalone. In the Inclusions pane of the Standalone Application Settings window, make sure the "XML-RPC" library checkbox is checked.

Tagsnetworking