revXMLRPC_GetResponse

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

If the execution of an XML-RPC request was successful, this function returns the response document.

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

The number returned by the revXMLRPC_CreateRequest function when you created the XML-RPC request. If the revXMLRPC_GetResponse function encounters an error, it returns an error message starting with "xmlrpcerr" ..

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

The response of the 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_GetRequest, revXMLRPC_Execute, revXMLRPC_Error, revXMLRPC_Error, revXMLRPC_CreateRequest, revXMLRPC_Execute
Library: XML-RPC library
Securitydisk, process
Description

Use the revXMLRPC_GetResponse function to retrieve the response to the execution of an XML-RPC request.

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