Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/sjkelly/xmlrpc.jl
- Owner: sjkelly
- License: other
- Created: 2016-06-13T19:49:59.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-06-28T15:12:07.000Z (6 months ago)
- Last Synced: 2024-10-13T19:37:23.120Z (3 months ago)
- Language: Julia
- Homepage:
- Size: 14.6 KB
- Stars: 3
- Watchers: 3
- Forks: 6
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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"
```