Cómo usar XMLRPC en C#
xml-rpc xml-rpc.net (2)
Necesito hacer llamadas XMLRPC desde mi aplicación C # y no pude encontrar ninguna ayuda con eso. Cuando usé XMLRPC de Ruby, es así de simple:
server = XMLRPC::Client.new2("http://server/api.php")
result = server.call("remote.procedure", [1, [[''crit1'', ''crit2'', ''crit3'']]])
¿Hay alguna biblioteca similar para C #?
Es muy sencillo usar la biblioteca xml-rpc.net, esto es lo que debe hacer:
[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");
Mira si esta biblioteca funciona para ti.
https://code.google.com/p/xmlrpcnet/