revXMLRPC_GetParamNode

Typefunction
DictionaryLCS
LibraryLiveCode Script
Syntax
revXMLRPC_GetParamNode(<XMLRPCdocumentID>,<paramNumber>)
Associationsxml-rpc library
Summary

Returns the node of a single parameter from an XML-RPC document structure, so you can parse the data using the XML library commands and functions.

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

The number returned by the revXMLRPC_CreateRequest when you created the XML-RPC request, or the successful revXMLRPC_Execute function when you executed an XML-RPC request.

paramNumber

The number given to the parameter within the XML-RPC document structure.

Example
local tParamNode
put revXMLRPC_GetParamNode(tResponse,1) into tParamNode
RelatedLibrary: XML library, XML-RPC library
Function: revXMLRPC_Execute
Glossary: command, function, XML-RPC document
Securitydisk, process
Description

Use the revXMLRPC_GetParamNode function to recall the node of a single parameter.