Software implementation
HTTP API is represented by by web2 module—Web-server 2.0 (see Configuring the Server to connect the Clients via the Web server 2.0 module).
HTTP API allows using the following features:
- Get information about interactive maps: map list, map name, map layer list, layer parameters, layer background image, information about the list of points and an individual point on the layer (see Map).
- Get information about object classes created on the Server, a list of states for the object class and information about status, icons for a specific state (see Object classes).
- Get a list of objects created on the server, information about the individual object, the state of the object, the list of available actions with the object (see Objects).
- Receive events from the Server both separately and by blocks (see Getting events).
- Send commands to the server (see Sending commands to server).
- Run macros (see Macros).
- Work with video: get frames, request configuration, receive live and archive video, manage recording, arm and disarm cameras, manage telemetry (see Video).
- Get live and archive sound (see Sound).
- Get a list of users (see Users).
- Send events and reactions to the core of the Axxon PSIM software (see Sending reactions and events to Axxon PSIM using HTTP request).
Access the Face PSIM API and the Auto PSIM API (see Calling API of vertical solutions via Axxon PSIM HTTP API).
Set up integration with Technoserv and ECHD (see Configuring the Technoserv integration).
Specifics and limitations
- The following notation is used in the examples shown in this section:
- Port stands for port number. The default Web-server 2.0 module port is 8085. Specifying port in HTTP API commands is mandatory.
- /web2 – web context where the web2 app operates. This is the web-app context.
Further the description will be omitted when query action is clear in the context.
...
- URL, id of objects and file extension are case-sensitive
...
- .
- Date and time are specified in RFC 3339 format, see details at http://www.ietf.org/rfc/rfc3339.txt.
- Compression of messages from kernels should be disabled, that is, the registry key MsgCompressOn=0 (see Axxon PSIM base version registry keys).
Authorization
Authorization is needed for requests. Two types of authorization are supported: Basic and Bearer.
...
By default, the response is in the JSON format. The default response in XML format can be enabled on the settings panel of the Web-server 2.0 object (see Configuring default response type for HTTP API requests). Also, the response format can be explicitly specified in the Accept header, for example application/json or application/xml. The response format specified in the request has a higher priority than the default response format specified on the settings panel of the Web-server 2.0 object.
Cross domain requests (CORS)
...
By default, Web server 2.0 uses the HTTP protocol. To transfer data via the HTTPS protocol, it should be first enabled in Web-server 2.0 and in the Web-server object settings (see see HTTPS settings and Parameters of connecting Clients to the Web-server). The default port for HTTPS is 8443.
If the use of HTTPS is not enabled in the settings, but port 8443 is used in the requests, then they will be redirected to HTTP. For example, if you request "https://127.0.0.1:8443/web2/secure/configuration", it will be automatically redirected to "http://127.0.0.1:8085/web2/secure/configuration".