Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sjkelly/xmlrpc.jl

Send and recieve XML-RPCs with Julia
https://github.com/sjkelly/xmlrpc.jl

Last synced: about 2 months ago
JSON representation

Send and recieve XML-RPCs with Julia

Awesome Lists containing this project

README

        

# XMLRPC

Send and recieve [XMLRPC](https://xmlrpc.com/). The full
spec is currently supported except for fault handling.

## Example

```julia

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"

```