我需要从我的C#应用程序进行XMLRPC调用,但我没有找到任何帮助。当我使用Ruby的XMLRPC时,就这么简单:
server = XMLRPC::Client.new2("http://server/api.php")
result = server.call("remote.procedure", [1, [['crit1', 'crit2', 'crit3']]])
是否有类似的C#库?
答案 0 :(得分:21)
查看此库是否适合您 https://code.google.com/p/xmlrpcnet/
答案 1 :(得分:21)
使用xml-rpc.net库非常简单,这是您需要做的:
[XmlRpcUrl("http://url_to_your_server/api.php")]
public interface ISumAndDiff : IXmlRpcProxy
{
[XmlRpcMethod("your.remote.procedure")]
string testMyClient(string test);
}
ISumAndDiff proxy = XmlRpcProxyGen.Create<ISumAndDiff>();
string ret = proxy.testMyClient("test");