XML-RPC Server in Cocoa

前端 未结 2 1292
[愿得一人]
[愿得一人] 2021-01-13 23:06

I need to create an XML-RPC server on the iphone for testing purposes. Is there is a library I could leverage?

相关标签:
2条回答
  • 2021-01-13 23:51

    Check out eczarny / xmlrpc on github. It comes with a test server.

    0 讨论(0)
  • 2021-01-14 00:05

    Writing such a server -- especially for test purposes -- is pretty trivial using either Ruby or Python. I'd bet Ruby on Rails has solved this problem (I don't know it well enough to say for sure).

    For Python, there are about a dozen solutions. I've personally both used a dead simple server with the built in libraries and have also used Twisted if the server needs any kind of complexity.

    0 讨论(0)
提交回复
热议问题