how to use XMLRPC in C#

Adam Mus picture Adam Mus · Aug 28, 2009 · Viewed 32.5k times · Source

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::Client.new2("http://server/api.php")
result = server.call("remote.procedure", [1, [['crit1', 'crit2', 'crit3']]])

is there any similar library for C#?

Answer

Joel Martinez picture Joel Martinez · Aug 28, 2009

See if this library works for you
https://code.google.com/p/xmlrpcnet/