...
- Referring to FIX message log:
- Retrieve FIX message log of specific / all sessions
- Output the acquired contents to text
- Get FIX session list:
- Retrieve the list of session definitions and their states
- Output the acquired contents to text
Session Control
- Start and stop sessions
- Get session status (since FIXEdge 6.9.0)
- Get session statistics (since FIXEdge 6.9.0)
- Restart session (since FIXEdge 6.9.0)
Reset sequence No.
- Reset FIX sequence No. (incoming and outgoing)
Set sequence No.
- Set an arbitrary value for the sequence number of a specific session
Reload BL_Config.xml
Send messages to session output queue
...
Properties to configure in FIXEdge.properties:
Field | Type | Description | Required |
---|---|---|---|
AdminRESTAPI.Enabled | bool | is admin REST API enabled or not | No, default = false |
AdminRESTAPI.ServerMode | enum | admin REST API server modes:
| No, default = HTTPS |
AdminRESTAPI.BindAddress | string | define specific network interface for listening | No, default = "0.0.0.0" (all interfaces) |
AdminRESTAPI.Port | int | TCP port to listen | Yes (if Admin REST API enabled) |
AdminRESTAPI.HTTPSServer.Port | int | TCP port to listen |
No. Property is deprecated, use AdminRESTAPI.Port instead | |||
AdminRESTAPI.HTTPSServer.PrivateKey | string | path to SSL private key file (absolute paths are allowed) | Yes (for HTTPS server only) |
AdminRESTAPI.HTTPSServer.Certificate | string | path to SSL certificate |
file (absolute paths are allowed) | Yes (for HTTPS server only) | |
AdminRESTAPI.HTTPSServer.CertificateAuthority | string | path to the file or directory containing the CA/root certificates. Can be empty if the OpenSSL builtin CA certificates |
are used (absolute paths are allowed) | No, default = "" |
AdminRESTAPI.BindAddress
parameter and absolute paths are available since FIXEdge 6.9.0.
Example:
Code Block |
---|
AdminRESTAPI.Enabled = true AdminRESTAPI.HTTPSServer.Port = 8903 AdminRESTAPI.HTTPSServer.PrivateKey = FIXEdge1/conf/AdminRESTAPI.key AdminRESTAPI.HTTPSServer.Certificate = FIXEdge1/conf/AdminRESTAPI.crt |
...