murugamsm / xmlrpcnet

Automatically exported from code.google.com/p/xmlrpcnet
0 stars 0 forks source link

Support for "system.multicall" #103

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
It would be really helpfull if the library will support "system.multicall" (at 
least at the server side).

Specification: 
http://web.archive.org/web/20050221093058/http://www.xmlrpc.com/discuss/msgReade
r$1208

What steps will reproduce the problem?
1. Create a method with the following signature:
    [XmlRpcMethod("system.multicall")]
    public object[] Multicall(XmlRpcStruct[] inputs)
    {
    }

What is the expected output? What do you see instead?
The XmlRpcListenerService should call the methods with the parameters as 
specified within the input array.

Currently I need to manually determine the function and also have to extract 
the parameter values.

Original issue reported on code.google.com by soernt.p...@googlemail.com on 12 Jun 2012 at 3:56