- xml-rpc-methodcall method-name argsprocedure
Constructs an SXML representation of a method call to the procedure method-name with an arguments list of args.
(use xml-rpc-client) (xml-rpc-methodcall 'scheme.makeList '(1 2 3 "testing")) => (methodCall (methodName "scheme.makeList") (params (param (value (i4 "1"))) (param (value (i4 "2"))) (param (value (i4 "3"))) (param (value (string "testing")))))