xml-rpc-rs
xml-rpc-rs copied to clipboard
XML-RPC client library for Rust
Hi Jonas This is a working minimal version without any noticeable regressions for the elimination of reqwest::blocking. I have refactored the transport implementation to use reqwest and used tokio Runtime...
Hello, Would you accept a PR for a function for parsing a string to build an XML request? I'm looking to create an XML server and would like to leverage...
I want to create an API service, and I see `reqwest::blocking` is used here. Is it possible to rewrite to use `async`/`await` instead?
xml-rs is freaking slow so that it slows down download rates for any connection with more than like 1 MBit/s (even locally!). I successfully worked around that by implementing and...
Hey! I've hit this error when receiving improperly formatted headers from remote servers. I know this is definitely supposed to work as written, and it is the server's fault for...
Can you add an example on how to use the multicall function?
It's currently part of the public API. We should provide our own types instead.
Using XMLRPC with libcurl If you're interested, I'll finish the #[test]. Right now it needs a url to run.
Hello, not really an issue, but this may be of interest to users of this crate. I've written a quick proof-of-concept proc-macro helper, which let us define remote rpc methods...
I've been working with this package for serialization and deserialization over an scgi transport, but that means I need to serialize and deserialize to something other than http. Thankfully, write_to_xml...