I need to make XMLRPC calls from my C# application and I failed to find any help with that. When I used XMLRPC from Ruby, it\'s that simple:
server = XMLRPC:
It's very simple to use the xml-rpc.net library, here is what you need to do:
[XmlRpcUrl("http://url_to_your_server/api.php")]
public interface ISumAndDiff : IXmlRpcProxy
{
[XmlRpcMethod("your.remote.procedure")]
string testMyClient(string test);
}
ISumAndDiff proxy = XmlRpcProxyGen.Create();
string ret = proxy.testMyClient("test");