XMLRPC

June 28, 2024 ยท View on GitHub

Send and recieve XMLRPC. The full spec is currently supported except for fault handling.

Example


using XMLRPC

const urlEndpoint = "http://betty.userland.com/RPC2"
proxy = XMLRPC.Proxy(urlEndpoint)

@test proxy["examples.getStateName"](23) == "Minnesota"

@test proxy["examples.getStateNames"](12, 22, 32, 42) == "Idaho\nMichigan\nNew York\nTennessee"