Git Product home page Git Product logo

xmlrpclight's Introduction

XmlRpcLight

C# XmlRpc library based on a trimmed down version of Xml-Rpc by Charles Cook.

XmlRpcLight has no dependencies on System.Web and is suitable for usage in ASP.NET 5 applications.

Install from Nuget.org:

Install-Package XmlRpcLight.

Usage:

Derive a service class from XmlRpcService and mark methods with XmlRpcMethod attributes:

private class SomeXmlRpcLightService : XmlRpcService {
    [XmlRpcMethod("someNamesSpace.someMethod")]
    public string SomeMethod(int id, string name) {
        return id + name; // return something.
    }
}

Now instantiate this class and call Invoke with an Xml string to perform the Xml Rpc call:

string xml =
    @"<?xml version=""1.0""?>
	<methodCall>
	  <methodName>someNamesSpace.someMethod</methodName>
	  <params>
	    <param>
	        <value><i4>40</i4></value>
	    </param>
	    <param>
	        <value><string>bla bla</string></value>
	    </param>
	    <param>
	        <value>
	            <struct>
	              <member>
	                <name>PostId</name>
	                <value><i4>1</i4></value>
	              </member>
	              <member>
	                <name>PostText</name>
	                <value><string>2</string></value>
	              </member>
	            </struct>
	        </value>
	    </param>
	  </params>
	</methodCall>";

    var rpcService = new SomeXmlRpcLightService();
    var resultXml = rpcService.Invoke(xml);

   	// Now result will contain this XML:
	<?xml version=""1.0""?>
	<methodResponse>
	  <params>
	    <param>
	      <value>
	        <string>40bla bla</string>
	      </value>
	    </param>
	  </params>
	</methodResponse>";

xmlrpclight's People

Contributors

snielsson avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.