( name params -- rpc-method ) (original) (raw)

( name params -- rpc-method )
XML-RPC

Prev: ( string -- base64 )
Next: ( params -- rpc-response )

Vocabulary
xml-rpc

Inputs

name a string
params a sequence

Outputs

rpc-method a rpc-method

Word description
creates a tuple representing a method call which can be translated using send-rpc into an XML-RPC document

See also
rpc-method, ,

Definition

USING: kernel ;

IN: xml-rpc

: ( name params -- rpc-method )
\ rpc-method boa ; inline