This document contains a description of the main features of FIXEdge's REST Transport Adaptor (REST TA), as well as common steps required for installation.
FIXEdge REST adaptor is a REST server that handles REST requests with incoming messages in JSON form, converts them to FIX format and sends them to a given target. The adapter is designed for the generic processing of messages, without lock-in to specific message types.
Depending on the configuration settings, the adaptor can transform incoming message to either a FIX XML message of 'n' type, or map JSON fields into FIX tags. The type of the resulting message should be defined in tag 35.
The JSON message format might look as follows:
'{"35":"D", "1":"12345", "56":"CITIGROUP", ..........}' |
The adaptor supports repeating groups and nested repeating groups.
Requests are sent as HTTP POST requests to the following URL: http://<Address>:<ListenPort>/messages
Example of REST request using curl for localhost and listen port 8001:
curl -H "Content-Type: application/json" -X POST -d "{\"35\":\"D\",\"1\":\"USD\",\"386\":[{\"336\":\"ABCD\"}]}" http://localhost:8001/messages |
Resulting FIX messages can be optionally validated against FIX dictionaries defined in the engine.properties configuration file.
As a result of a REST request, the adapter should return one of the following HTTP status codes:
FIXEdge REST adaptor can be configured to write the following data into separate log file:
The adaptor supports the monitoring of its current state with FIXICC. It provides the following monitorable properties:
a JSON message can contain repeating groups represented as follows:
{ "NoRecordsID": [ { "FIXID":"FIXValue", "FIXID":"FIXValue"... }, { "FIXID":"FIXValue", "FIXID":"FIXValue"... } ... ] } |
REST Acceptor TA supports two conversion methods:
Examples of input/output messages (pipe symbol stands for SOH symbol):
input (from external system) | output (to BL) | ||
---|---|---|---|
WrapInXmlMessage | FIX: 8=FIX.4.4| 9=168| 35=E| 49=0| 56=RESTAdapter| 34=1| 50=30737| 66=List1| 116=OMS1| 52=20191101-11:11:01.080| 394=3| 68=2| 73=2| 11=0003| 67=1| 100=DSMD| 55=11| 54=1| 38=100| 11=0004| 67=2| 100=DSMD| 55=12|54=2| 38=200| 10=235 | FIX (input message is marked orange): 8=FIX.4.4| 9=259| 35=n| 49=0| 56=0| 34=1| 52=20200317-10:23:55.068| 212=201| 213=8=FIX.4.4| 9=168| 35=E| 49=0| 56=RESTAdapter| 34=1| 50=30737| 66=List1| 116=OMS1| 52=20191101-11:11:01.080| 394=3| 68=2| 73=2| 11=0003| 67=1| 100=DSMD| 55=11| 54=1| 38=100| 11=0004| 67=2| 100=DSMD| 55=12| 54=2| 38=200| 10=235| 10=219 | |
NumericTagValueMapping | JSON (the example contains repeating groups):
| FIX: 8=FIX.4.4| 9=184| 35=E| 49=JAVA| 56=RESTAdapter| 34=3| 50=30737| 116=OMS1| 52=20150101-01:01:01.080| 66=List1| 394=3| 68=2| 73=2| 11=0003| 67=1| 100=DSMD| 55=MSFT| 54=1| 38=100| 11=0004| 67=2| 100=DSMD| 55=IBM| 54=2| 38=200| 10=249 |
REST Acceptor TA can be configured to validate converted FIX messages. FIX Message validation uses the following default validation options:
In order to set up REST TA for FIX Edge you need to:
1. Copy the FIXEdge distribution package to the FIX Edge home:
Unpack the content of the distribution package to the FIXEdge root directory, e.g. to C:\FIXEdge.
2. Enable TA to be used by FIXEdge.
In the ‘Transport Layer Section’ of the FIXEdge.properties, add REST TA to the list of supported adapters:
TransportLayer.TransportAdapters = TransportLayer.RestTA |
Note: If you use other transport adapters, just add TransportLayer.RestTA to the end of the list:
TransportLayer.TransportAdapters = TransportLayer.SmtpTA, TransportLayer.RestTA |
3. Configure the TA.
3.1. Add the REST TA section to the FIXEdge.properties.
A sample set of properties is given below:
TransportLayer.TransportAdapters = TransportLayer.RestTA TransportLayer.RestTA.Description = REST Acceptor TA TransportLayer.RestTA.DllName = bin/rest_acceptor_ta-vc10-MD-x64.dll TransportLayer.RestTA.Type = DLL TransportLayer.RestTA.ClientID = RestAcceptorClient TransportLayer.RestTA.LogCategory = RestAcceptorClient TransportLayer.RestTA.ListenPort = 8001 TransportLayer.RestTA.FIXVersion = FIX50 TransportLayer.RestTA.ConversionMethod = NumericTagValueMapping TransportLayer.RestTA.ValidateFIXMessage = ValidateAndWarn TransportLayer.RestTA.SourceIPAddress = 127.0.0.1 |
Note: Sample settings could be copied from the RESTAcceptorTA.properties file (in the doc folder of FIXEdge distribution package) to the FIXEdge.properties file.
3.2. Optionally, configure logging for the received and sent messages in a separate log category:
Log.RESTTA.Device = File Log.RESTTA.DebugIsOn = true Log.RESTTA.TraceIsOn = true Log.RESTTA.NoteIsOn = true Log.RESTTA.File.Name = FIXEdge1/log/RESTTA.log |
4. Restart FIXEdge to apply the changes.
The REST TA Client can be referred to the business layer (BL) by the ClientID name specified in the FIXEdge.properties file. Below is an example of BL_Config.xml.
<?xml version="1.0" encoding="UTF-8" ?> <!-- FIXEdge - the XML Configuration file $Revision: 1.17.2.7 $ <!DOCTYPE FIXEdge SYSTEM "BusinessLayer.dtd"> --> <FIXEdge> <BusinessLayer> <Rule> <Source> <Client Name="RestAcceptorClient"/> </Source> <Condition> <MatchField Field="35" Value=" D|G|F|n " /> </Condition> <Action> <Send> <FixSession SenderCompID="FIXEDGE" TargetCompID="FIXCLIENT"/> </Send> </Action> </Rule> <DefaultRule> <Action> <DoNothing/> </Action> </DefaultRule> </BusinessLayer> </FIXEdge> |
Configuration of the REST Adaptor contains a list of adaptor properties, HTTP server properties, and log settings:
Property Name | Description | Required | Default Value | |
---|---|---|---|---|
Transport adapter parameters | ||||
TransportLayer.RestTA.Description | User-defined description of the Transport Adapter | Y | REST Acceptor TA | |
TransportLayer.RestTA.DllName | TA library file name. In case this parameter is not specified, the TransportLayer.RestTA.AdapterId is applied to define the adapter's library by ID | Y |
| |
TransportLayer.RestTA.AdapterId | The parameter to define the adapter's library by ID. In case this parameter is not specified, or TransportLayer.RestTA.DllName parameter is specified too, the TransportLayer.RestTA.DllName is applied
| N | REST_ACCEPTOR | |
TransportLayer.RestTA.Type | TA library type | Y | DLL | |
TransportLayer.RestTA.ClientID | Transport adaptor Client ID which identifies the source of messages in BL config | Y | ||
TransportLayer.RestTA.ListenPort | TCP port number for incoming HTTP connections. Allowed range is 1 - 65535 | N | 8001 | |
TransportLayer.RestTA.FIXVersion | FIX version of generated messages:
| N | FIX44 | |
TransportLayer.RestTA.ConversionMethod | The method used to convert input messages into FIX format:
| N | NumericTagValueMapping | |
TransportLayer.RestTA.ValidateFIXMessage | Enables/disables validation of resulting FIX message:
| N | No | |
TransportLayer.RestTA.SourceIPAddress | Provides the ability to filter IP addresses on the REST Acceptor TA. Allows specifying multiple comma-separated IP addresses as well as hostnames.
| N | ||
HTTP(S) Server Parameters | ||||
TransportLayer.RestTA.Protocol | Security type of connection. Allows user to setup secure or non-secure HTTP connection.
| Yes | ||
TransportLayer.RestTA.HTTP.timeout | Connection timeout for HTTP connections in seconds. | N | 60 | |
TransportLayer.RestTA.HTTP.keepAlive | Enables/disables persistent HTTP connections:
| N | true | |
TransportLayer.RestTA.HTTP.maxKeepAliveRequests | Specifies the maximum number of requests allowed during a persistent connection. 0 means unlimited connections. | N | 0 | |
TransportLayer.RestTA.HTTP.keepAliveTimeout | Connection timeout for persistent HTTP connections in seconds. | N | 10 | |
TransportLayer.RestTA.HTTP.maxThreads | A maximum number of threads processing HTTP requests. The allowed range is 1 – 16. | N | 1 | |
TransportLayer.RestTA.HTTPS.PrivateKey | Path to a private key
| Conditional. | FIXEdge1/conf/AdminRESTAPI.key | |
TransportLayer.RestTA.HTTPS.Certificate | Path to certificate
| Conditional. | FIXEdge1/conf/AdminRESTAPI.key | |
TransportLayer.RestTA.HTTPS.PrivateKeyPassword | Private key password | Conditional Used when the private key is password-encrypted. | ||
TransportLayer.RestTA.AuthHeader | Authentication header (may be used in HTTP mode also)
| No | ||
TransportLayer.RestTA.AuthValue | Authentication value (may be used in HTTP mode also)
| No | ||
Logging Parameters | ||||
TransportLayer.RestTA.LogCategory | Transport adaptor log category | Y | ||
Log.RESTTA.Device | The target device for logging the received and sent messages:
| N | ||
Log.RESTTA.File.Name | Filename used to log the received and sent messages | N |
An example of REST Acceptor configuration with the security mode turned on:
TransportLayer.RestTA.Description = RESTAcceptorTA TransportLayer.RestTA.DllName = bin/REST_Acceptor_TA-vc10-MDD-x64.dll TransportLayer.RestTA.Type = DLL TransportLayer.RestTA.ClientID = RestAcceptorClient TransportLayer.RestTA.LogCategory = RestAcceptorClient TransportLayer.RestTA.Protocol = HTTPS TransportLayer.RestTA.HTTPS.PrivateKey = FIXEdge1/conf/AdminRESTAPI.key TransportLayer.RestTA.HTTPS.Certificate = FIXEdge1/conf/AdminRESTAPI.crt TransportLayer.RestTA.ListenPort = 8001 TransportLayer.RestTA.FIXVersion = FIX44 TransportLayer.RestTA.ConversionMethod = NumericTagValueMapping TransportLayer.RestTA.ValidateFIXMessage = ValidateAndWarn TransportLayer.RestTA.AuthHeader = apikey TransportLayer.RestTA.AuthValue = QWERTY0123456789 TransportLayer.RestTA.PrivateKeyPassword = PKEYPASS123 |