-
Notifications
You must be signed in to change notification settings - Fork 0
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.
- JSON RPC API following specifications at JSON RPC Specification.
- Client Making an API Request
The API Library JSONRPC Methods list with Parameters, Return examples.
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- 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