Skip to content

API Library JSONRPC

Robert Polak edited this page Jul 23, 2019 · 16 revisions

Home / API Library / JSONRPC

API Library JSONRPC

The JSONRPC API library. JSON-RPC is a stateless, light-weight remote procedure call (RPC) protocol.

The API Library JSONRPC Methods list with Parameters, Return examples.

Configuration

Configuration- Details

Configuration of JSONRPC variables at App.config.

<configuration>
	<AppSettings>
		<!-- JSONRPC - Success response (case sensitive) -->
		<add key="API_JSONRPC_SUCCESS" value="success" />
		<!-- JSONRPC - Windows Authentication [ANONYMOUS, WINDOWS, ANY] -->
		<add key="API_JSONRPC_AUTHENTICATION_TYPE" value="WINDOWS" />
	</AppSettings>
</configuration>

Process Request

Process Request- Details

The Proces sRequest executed automatically by the iHttpHandler interface.

Method: API.JSONRPC.ProcessRequest

Parameters: template

Name Type Default Description
context HttpContext object HttpContext object

Return: void

Clone this wiki locally