XMLRPC.jl

Send and recieve XML-RPCs with Julia
Popularity
3 Stars
Updated Last
5 Months Ago
Started In
June 2016

XMLRPC

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"