xmlrpc icon indicating copy to clipboard operation
xmlrpc copied to clipboard

The Ruby standard library package 'xmlrpc'

Results 7 xmlrpc issues
Sort by recently updated
recently updated
newest added

There is a very old gem on https://github.com/washu/xmlrpc-streaming, with the following feature set: * Base64 now accepts an IO object to its constructor * The XMLRPC request will now be...

Currently there is no simple way to transport a non-default object over XMLRPC with this lib. ## Contrived example We have a `Money` class, with 3 values: `currency` (like Dollar,...

The current implementation uses the argument `timeout` to define both open and read timeout; therefore, for a timeout of 30 seconds, the query will have a total timeout of 60...

Hi, is there any reason why we can't define open_timeout and read_timeout independently? I would be happy to implement it; I think the following code would be enough: ```ruby def...

Given the plethora of cases about possible RCE vulnerabilities that have led to the 0.3.3 release, I would like to argue that the default object marshalling is incorrect. Beside the...

```ruby server = XMLRPC::Client.new2("http://xmlrpc-c.sourceforge.net/api/sample.php") result = server.call("sample.sumAndDifference", 5, 3) ``` It looks like sourceforge has had some updates, this URL now redirects to `https://xmlrpc-c.sourceforge.io/api/sample.php` which is just a plain HTML...

This is related to the `rexml` gem and the recent flood of updates of that gem with CVE fixes. It handles a couple of issues. First, the xmlrpc gem depends...