Add Json-Rpc 2.0 To Registered Handlers

Added registration json-rpc handlers in the http server. Covers version 2.0
  See: http://www.jsonrpc.org/specification
This commit is contained in:
BlueWall
2013-01-15 10:04:16 -05:00
parent b592ec265b
commit ca3e0d67d2
5 changed files with 298 additions and 0 deletions

View File

@@ -97,6 +97,8 @@ namespace OpenSim.Framework.Servers.HttpServer
bool AddXmlRPCHandler(string method, XmlRpcMethod handler);
bool AddXmlRPCHandler(string method, XmlRpcMethod handler, bool keepAlive);
bool AddJsonRPCHandler(string method, JsonRPCMethod handler);
/// <summary>
/// Gets the XML RPC handler for given method name
/// </summary>