send-rpc ( rpc -- xml ) (original) (raw)

send-rpc ( rpc -- xml )
XML-RPC

Next: receive-rpc ( xml -- rpc )

Vocabulary
xml-rpc

Inputs

rpc an RPC data type

Outputs

xml an XML document

Word description
converts an RPC data type into an XML document which can be sent to another computer

See also
receive-rpc

Definition

IN: xml-rpc

GENERIC: send-rpc ( rpc -- xml )

Methods

USING: accessors kernel xml-rpc ;

M: rpc-fault send-rpc [ code>> ] [ string>> ] bi return-fault ;

USING: accessors kernel xml-rpc ;

M: rpc-method send-rpc [ name>> ] [ params>> ] bi method-call ;

USING: accessors xml-rpc ;

M: rpc-response send-rpc params>> return-params ;