C#アプリケーションからXMLRPC呼び出しを行う必要がありますが、それに関するヘルプが見つかりませんでした。 RubyのXMLRPCを使用したとき、それはとても簡単です。
server = XMLRPC::Client.new2("http://server/api.php")
result = server.call("remote.procedure", [1, [['crit1', 'crit2', 'crit3']]])
c#用の同様のライブラリはありますか?
このライブラリがあなたのために働くかどうか見てください
https://code.google.com/p/xmlrpcnet/
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");