Hello, I'm looking for an xml-rpc client library. Does something like this exist? I couldn't locate any (which probably means I didn't look hard enough). Thanks.
Thanks. Might be old-fashioned, but it's still used (I'm looking at you, BZSt). I wanted to avoid rolling my own bug ridden client, but it might be some fun project.
@stedi Have you begun this effort? Will you also need a server? I would like a faster XML-RPC server to support an academic project. I have small slivers of time to give; as this would speed up my work but is not required for it.
@jwatson-CO-edu Nope. The problem I tried to solve is easily done with some xml templating for the request and xml parsing of the answer as both (request and response) are highly structured and don't require a generic XML-RPC solution.
I see, I think std/`{`asynchttpserver, httpclient, xmlparser} will be my starting place(s) as well. If I produce anything substantive, I will link to it in this thread.
I was searching for the same a while ago but couldn't find any. But implementing on top of std/xmltree, xmlparserwith net/httpclientseemed doable with my limited experience with both Nim and XMLRPC. Here is some scribbles: https://github.com/naveedhd/rosnim(in the context of ROS client library which used xmlrpc)