Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
Macro XML-RPC
XML-RPC support for MacroExpress.
This is covered in the Writing an Swift XML-RPC Server blog entry.
What does it look like?
#!/usr/bin/swift sh
import MacroExpress // @Macro-swift
import MacroXmlRpc // @Macro-swift
let app = express()
app.route("/RPC2")
.use(bodyParser.xmlRpcCall())
.rpc("ping") { _ in "pong" }
.rpc("add") { ( a: Int, b: Int ) in a + b }
.use(xmlrpc.introspection())
app.listen(1337)
Environment Variables
macro.core.numthreads
macro.core.iothreads
macro.core.retain.debug
macro.concat.maxsize
macro.streams.debug.rc
macro.router.debug
macro.router.matcher.debug
macro.router.walker.debug
Links
- Writing an Swift XML-RPC Server
- MacroExpress.
- Macro
- XML-RPC Homepage
- XML-RPC Spec
- XML-RPC for Newbies
- Original site
- XML-RPC HowTo by Eric Kidd
- Python Client
Who
Macro XML-RPC is brought to you by the Always Right Institute and ZeeZide. We like feedback, GitHub stars, cool contract work, presumably any form of praise you can think of.
There is a #microexpress
channel on the
Noze.io Slack. Feel free to join!
Github
link |
Stars: 0 |