FIX Antenna Java provides a few ways for configuring its behavior. The global configuration is defined in default configuration file – fixengine.properties. Also it’s possible to define and load custom configuration for sessions from separate file.
Antenna loads global settings from configuration file with fixed name – fixengine.properties. This file should be placed in in one of the following places:
Property Name | Default Value | Description |
performResetSeqNumTime | false | This parameter specifies whether to reset sequence number at time defined in resetSequenceTime. |
switchOffSendingMultipleResendRequests | false | This parameter specifies whether to send multiple RR for the same gap or not. |
resetSequenceTime | 00:00:00 | This parameter specifies GMT time when the FIX Engine initiates the reset. |
resetSequenceTimeZone | UTC | Time zone di for resetSequenceTime property. |
intraDaySeqNumReset | false | This parameter specifies whether to reset sequence number after session is closed. Valid values: true | false. Default value: false. |
encryptionConfig | ${fixaj.home}/encryption/encryption.cfg | This parameter specifies encryption config file name. Valid values: existent valid config file name (relative or absolute path). |
encryptionMode | None | This parameter specifies the default value of encryptionMode. Valid values: None | Des | PgpDesMd5. Default value: None |
autoreconnectAttempts | -1 | Specifies the number of autoreconnect attempts:
|
autoreconnectDelayInMs | 1000 | Specifies a delay between autoreconnect attempts in
milliseconds, the default value is 1000ms. The parameter must be integer and not negative. Otherwise, FIXAJ will use the default value for this parameter. |
loginWaitTimeout | 5000 | Sets
the timeout interval after which a connected acceptor session will be timed
out and disposed if Logon is not received for this session. The parameter must be integer and not negative. Otherwise, FIXAJ will use the default value for this parameter. |
logoutWaitTimeout | Sets disconnect timeout in seconds for logout. The parameter must be integer and not negative. Otherwise, FIXAJ will use the session's HeartbeatInterval |
|
handleSeqNumAtLogon | false | This parameter specifies whether to process 789-NextExpectedMsgSeqNum tag. If true, outgoing sequence number must be updated by 789-NextExpectedMsgSeqNum tag value. |
disconnectOnLogonHeartbeatMismatch | true | Check and disconnect session if Logon answer contains other HeartBtInt(108) value than defined in session configuration. |
forcedLogoffTimeout | 2 | Sets the disconnect timeout in seconds for a Logout ack only when
waiting for. The Logout ack from the counterparty is caused by the incoming sequence number less then expected. The parameter must be integer and not negative. Otherwise, FIXAJ will use the standard value for this parameter. |
sendRejectIfApplicationIsNotAvailable | true | Sends a reject if user application is not available. If the value is false and client applicaiton is not available, acts like a "black hole" - accepts and ignores all valid messages. |
rawTags | 96, 91, 213, 349, 351, 353, 355, 357, 359, 361, 363, 365, 446, 619, 622 | Raw tags. List all tags that the Engine should treat as raw. Raw tag may contain a SOH symbol inside it and it should be preceided by the rawTagLength field. |
resendRequestNumberOfMessagesLimit | 0 | Limits the maximum number of
messages during the resend request. If more messages are requested, the reject will be sent in response. The parameter must be integer and not negative. Otherwise, FIXAJ will use the default value for this parameter. |
maxRequestResendInBlock | 0 | The max requested messages in block. This parameter defines how many messages will be request in one block. The value must be integer and not less than 0. |
testRequestsNumberUponDisconnection | 1 | This parameter specifies number of Test Request messages, which will be sent before connection loss is reported when no messages are received from the counterparty. Valid values: positive integer |
advancedResendRequestProcessing | No | This parameter specifies whether to issue subsequently duplicates (PossDupFlag(43) = 'Y') of last Resend Request for continuing gaps resting on LastMsgSeqNumProcessed(369) field values of incoming messages. The counterparty then must respond only to the original request or a subsequent duplicate Resend Request if it missed the original. The duplicate(s), otherwise, can be discarded, as it does not have a unique message sequence number of its own. Valid values: Yes | No |
skipDuplicatedResendRequests | No | This parameter specifies whether respond only to the original request or a subsequent duplicate Resend Request if it missed the original. If this option is disabled, FIXAJ will respond to any Resend Request. Valid values: Yes | No |
serverAcceptorStrategy | com.epam.fixengine.acceptor.AllowNonRegisteredAcceptorStrategyHandler | This parameter specifies the default Acceptor Strategy. Valid values: subclasses of com.epam.fixengine.acceptor.SessionAcceptorStrategyHandler (com.epam.fixengine.acceptor.AllowNonRegisteredAcceptorStrategyHandler, com.epam.fixengine.acceptor.DenyNonRegisteredAcceptorStrategyHandler) |
useJavaNIO | This parameter specifies to use NIO transport or traditional blocking implementation. Valid values: true/false Default value: false |
|
blockingNIOSocket | true | This parameter specifies to use NIO blocking sockets or not. This option will work only if
useJavaNIO=true. Valid values: true/false Default value: true |
spinningNIORead | false | This parameter specifies to use spinning read mechanism in NIO transport. This option will work only if
useJavaNIO=true. Valid values: true/false Default value: false |
possDupSmartDelivery | No | This parameter enables delivery of only those PossDup messages that wasn't received previously. Discarding already processed possDups. Valid values: Yes/No |
maxMessageSize | 1Mb | Maximum message size supported
by this FIX engine instance. The parameter must be integer and not negative. Otherwise, FIXAJ will use the default value for this parameter. Should be set to a greater than expected maximum message by approximately 1-5%.
|
includeLastProcessed | false | Include the last processed sequence 369 tag in every message for FIX versions > 4.2. |
enableMessageRejecting | false | Enable/disable message rejecting. If this feature is enabled and during session closing there are messages in its output queue, they will be passed to session's RejectMessageListener and the queue will be cleaned. In other case messages will be left in the queue and processed according to queue behaviour. Be default this feature is disabled. |
enableMessageStatistic | true | Enable/disable message statistic such as the number of message and bytes was read and sent. |
enableNagle | true | Disable/enable Nagle's algorithm for TCP sockets. This option has the opposite meaning to TCP_NO_DELAY socket
option.
With enabled Nagle's algorithm will be better throughput (TCP_NO_DELAY=false) but with disabled option you will
get better result for latency on single message (TCP_NO_DELAY=true) Default value is true. |
recvCpuAffinity | -1 | This parameter specifies cpu id for a thread of session that receives the data from socket. |
sendCpuAffinity | -1 | This parameter specifies cpu id for a thread of session that sends the data in socket. |
cpuAffinity | -1 | This parameter specifies cpu id for the threads of session that send and receive the data from/in socket. |
connectAddress |
Engine's local IP address to send from. It can be used on a multi-homed host
for a FIX Engine that will only send IP datagrams from one of its addresses. If this parameter is commented, the engine will send IP datagrams from any/all local addresses. |
|
resetOnSwitchToBackup | false | Reset sequences on switch to backup. |
resetOnSwitchToPrimary | false | Reset sequences on switch back to primary connection. |
enableAutoSwitchToBackupConnection | true | Enable auto switching to backup connection, the default value is true. |
cyclicSwitchBackupConnection | true | Enable switching to primary connection, the default value is true. |
enableSSL | false | Enables SSL transport for all initiator sessions by default. For individual session control set this parameter in session configuration. |
sslServerNeedClientAuth | false | Require authentication for server-side socket. |
sslProtocol | TLSv1.2 | SSL protocol. See the SSLContext section in the Java Cryptography Architecture Standard Algorithm Name Documentation for information about standard protocol names. |
acceptedSslServerProtocols | Accepted ssl protocols for connection to server. Used to restrict the ssl protocols on which the initiator can connect. Value type: comma separated string. Examples of value: "TLSv1.1, TLSv1.2, ..." |
|
acceptedSslCipherSuites | Accepted ssl cipher suites for connection to server. Value type: comma separated string. Examples of value: "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, ..." |
|
keyStorePath | Path to a KeyStore. May contains private keys or trusted certificates. | |
keyStorePassword | KeyStore password. | |
sslKeystoreType | JKS | The type of KeyStore. See the KeyStore section in the Java Cryptography Architecture Standard Algorithm Name Documentation for information about standard keystore types. |
sslKeystoreKeyAlias | Alias filter for used entities in KeyStore. | |
keyManagerAlgorithm | SunX509 | Key manager algorithm. Used to get KeyManagerFactory instance. |
keyManagerProvider | Key manager provider. Used to get KeyManagerFactory instance. Note that the list of registered providers may be retrieved via the Security.getProviders() method. |
|
trustStorePath | Path to a TrustStore. Usually contains chain of trusted certificates. | |
trustStorePassword | TrustStore password. | |
sslTruststoreType | JKS | The type of TrustStore. See the KeyStore section in the Java Cryptography Architecture Standard Algorithm Name Documentation for information about standard keystore types. |
trustManagerAlgorithm | PKIX | Trust manager algorithm. Used to get TrustManagerFactory instance. See more |
socketContextFactory | none | Allows user to customize transport sockets for FIX sessions. Implementation of SocketContextFactory interface allows to produce socket factories and sockets with customized options. For example, it allows to configure custom security for SSL sockets. Valid value is a name of class in classpath that implements SocketContextFactory. |
forceSeqNumReset | Never | This parameter allow to automatically resolve sequence gap problem (for example, when there is every day
sequence reset). Supported values: Always, OneTime, Never. If this parameter is set to:
|
ignorePossDupForGapFill | true | Enable this option if it need to handle SequenceReset-GapFill message without PossDupFlag(43).
Also this option allow to ignore absence of OrigSendingTime(122) in such message. Valid values: true | false |
checkSendingTimeAccuracy | true | Toggle on/off the check of SendingTime (52) accuracy for received messages. |
reasonableDelayInMs | 120000 | Sending time delay for incoming messages. The parameter must be integer and not negative. Otherwise, FIXAJ will use the default values for this parameter. |
heartbeatReasonableTransmissionTime | 200 | This parameter specifies "some reasonable transmission time" of FIX specification, measured in
milliseconds. Valid values: positive integer |
measurementAccuracyInMs | 1 | Measurement accuracy for sending time. The parameter must be integer and not negative. Otherwise, FIXAJ will use the standard values for these parameters. |
timestampsPrecisionInTags | Milli | The desired precision of timestamps in appropriate tags of the FIX message. Valid values: Second | Milli | Micro | Nano. |
allowedSecondsFractionsForFIX40 | false | Use timestamp with precision defined by timestampsPrecisionInTags option for FIX 4.0 if enabled. |
preferredSendingMode | sync | This parameter specifies the way the session will send most of its messages:
|
waitForMsgQueuingDelay | 1000 | This parameter specifies the maximum delay interval on message sending if the internal session queue is full. If the internal session's queue is full then FIX Antenna pause the sending thread till the message pumper thread send some messages and free some space in the queue. If after the delay interval queue still full, then message will be pushed to the queue anyway. Valid values: positive integer |
ignoreSeqNumTooLowAtLogon | false | This parameter allow to resolve wrong incoming sequence at Logon.
When it true - session continue with received seqNum. Valid values: true/false |
resetQueueOnLowSequence | true | When disabled prevents outgoing queue reset if client connecting with lower than expected sequence number.
Once session is reestablished queued messages will be sent out. Please note that queued messages won't be sent out till session if fully established regardless of that parameter. Valid values: true | false |
resetSeqNumFromFirstLogon | never | Determines if sequence numbers should be accepted from the incoming Logon message. The option allows to reduce
miscommunication between sides and easier connect after scheduled sequence reset. The option doesn’t change behavior if the Logon message contains ResetSeqNumFlag(141) equals to “Y” (in this case session sequence numbers will be reset). The value ‘schedule’ allows to adopt to the sequence numbers from the incoming Logon message if the reset time is outdated (the session recovers after scheduled reset time). In this case session’s incoming sequence number will be set to the value of MsgSeqNum(34) tag from the incoming Logon and outgoing sequence number become equivalent to NextExpectedMsgSeqNum (789) tag value (if the tag is present) or will be reset to 1. Valid values: never | schedule |
quietLogonMode | false | Enable this option if it need to quiet handle Logout as a first session message.
FIX Specification requires that first message should be Logon. In other case it needs to send with answer Logout
message warning "First message is not logon". Also sоmetimes first incoming Logout has a wrong sequence
(for example if you send Logon with 141=Y). This option allow to skip sending ResendRequest and warning
to counterparty. Valid values: true | false |
allowedCountOfSimilarRR | 3 | This option indicate how many similar ResendRequests (for same range of sequences) engine may sends before
detecting possible infinite resend loop. This should prevent infinite loop for requesting many times same
corrupted messages or if user logic can't correctly handle some message and every time throws exception. The parameter must be integer and not negative. Otherwise, FIXAJ will use the standard value for this parameter. |
throttleCheckingEnabled | false | Enables throttling checks per message type. If this option is enabled, engine counts how many times session receives messages with some message type during 'throttleCheckingPeriod'. If this counter is greater than the value in throttleChecking.MSG_TYPE.threshold, the session will be disconnected with reason THROTTLING. |
throttleCheckingPeriod | 1000 | Defines period common for all throttling per message type checks. Default value: 1000 milliseconds |
throttleChecking.MSG_TYPE.threshold | -1 | Allowed count of message with MSG_TYPE type for 'throttleCheckingPeriod' period.
Valid values: positive integer Default value: -1 (disabled) |
resetThreshold | 0 | This parameter specifies a gap in sequences during connecting, which may be treated as missed sequence reset
event by the counterpart. It works if current session has reset sequences and expects message (Logon)
with 34=1 but counterparty is still sending messages with much higher sequences (they didn't do reset on
their side). This option helps to control bidirectional agreed sequence reset events and prevents to request old messages. This option is working only for acceptor session. Default value is 0, it means the check is not going to be performed. |
slowConsumerDetectionEnabled | false | This parameter enables slow consumer detection during sending messages. Default value: false (disabled) |
slowConsumerWriteDelayThreshold | 10 | This parameter used for decision making in slow consumer detection in pumpers. It defined a maximum timeframe for sending a message. If session transport can't send a message during this timeframe it will notify about a slow consumer. Default value: 10 (milliseconds) |
system.messagehandler.global.X | Set of predefined handlers | Sets global message handler(s). A handler will be called upon each and every incoming message. You can define your own set of global message handlers, but you should be very careful. The default set of handlers provides integrity checks like sending time accuracy, sequencing, visioning, validation. NOTE: Handlers will be applied in reverse order: handler with bigger number will by applied first. NOTE: Handler numbers should be unique and sequential. NOTE: Handlers can prevent further message processing. |
user.messagehandler.global.X | User supplied handlers. This set of handlers will be applied after system handlers for every incoming message (if it does not fall out). NOTE: Handlers will be applied in reverse order: handler with bigger number will be applied first. NOTE: Handler numbers should be unique and sequential. NOTE: Handlers can prevent further message processing. Example: You can enable the DeliverToCompId message handler for the 3rd Party Message routing if needed: user.messagehandler.global.0=com.epam.fixengine.session.messagehandler.global.DeliverToCompIdMessageHandler |
|
system.messagehandler.MSG_TYPE | Set of predefined handlers | Sets the handler of per message type, which will be called upon each and every incoming message. This set of properties is for redefining engine behaviour. You can change the default processing for session message types: Logon(A), Heartbeat(0), Test Request(1), Resend Request(2), Reject(3), Sequence Reset(4), Logout(5). NOTE: Handler numbers should be unique and sequential. These handlers will be applied after system and user defined global message handlers. NOTE: Handlers can prevent further message processing. Example:
system.messagehandler.3=com.mycompany.custom.RejectMessageHandler
|
autostart.acceptor.targetIds | Coma separated list of TargetCompID for automatic accepting sessions on server. For each of the sessions below other parameters such as login, password, source IP filter and listener should be set. IP filter could be defined as "*", which means that connection from any address is allowed. Or this property can contains a comma separated list of allowed IPs of subnet masks like 192.168.0.1/16. For example, you can enable the administrative plugin in the following way:
autostart.acceptor.targetIds=admin |
|
autostart.acceptor.TARGET_ID.login | Username(553) for automatic session acceptance | |
autostart.acceptor.TARGET_ID.password | Password(554) for automatic session acceptance | |
autostart.acceptor.TARGET_ID.ip | Source IP for automatic session acceptance or "*" if any applicable | |
autostart.acceptor.TARGET_ID.fixServerListener | Implementation of FIXServerListener for accepting the given session. | |
tcpSendBufferSize | 0 | This parameter specifies value for SocketOptions
.SO_SNDBUF option The default value is 0 and it means that the parameter is not specified and the option SocketOptions .SO_SNDBUF will not be changed. |
tcpReceiveBufferSize | 0 | This parameter specifies value for SocketOptions
.SO_RCVBUF option The default value is 0 and it means that the parameter is not specified and the option SocketOptions .SO_RCVBUF will not be changed. |
Property Name | Default Value | Description |
storageFactory | com.epam.fixengine.storage. FilesystemStorageFactory | Allows a user to replace storage factory with user's own implementation. FIX Antenna provides 4 implementations:
|
queueThresholdSize | 0 | Maximum number of messages in a
queue before we pause a pumper thread to let the queued message be sent
out.
|
maxMessagesToSendInBatch | 10 | The maximum number of messages in buffer before we write message to transport. NOTE: Value for this property should be always > 0. |
inMemoryQueue | false | Sets queue mode. This property makes sense only if FilesystemStorageFactory or MMFStorageFactory is set. Set to "false" for persistent queue (slower but no messages will be lost), "true" for in-memory queue (faster but less safe, some messages may be lost). |
memoryMappedQueue | true | Sets persistent queue mode for MMFStorageFactory. This property makes sense only if MMFStorageFactory is set. Set to "false" for persistent queue (slower but no messages will be lost), "true" for memory mapped queue (faster but less safe, some messages may be lost) |
incomingStorageIndexed | false | Incoming storage index. This property makes sense only if file storage is set. Enabled index - messages in incoming storage will be available via API. |
outgoingStorageIndexed | true | Outgoing storage index. This property makes sense only if file storage is set. Set to "true" to enable outgoing storage index that is to be used in decision making in resend request handler. Enabled index - support resend request, disabled - never resend messages and always send gap fill. |
maxStorageSliceSize | 100Mb | Specifies the maximum size of the storage file after
which the engine creates a new storage file with a different name. Parameter must be integer and not negative. This property makes sense only if SlicedFileStorageFactory is set. Default value: 100Mb. |
storageGrowSize | false | Enable/disable storage grow. Default value: false. This parameter and maxStorageGrowSize works only with persistent session. |
maskedTags | Define tags, which should be masked with '*****' value in the FIX message. Format: 'A:554' where A - message type, 554 - tag number. Example: 'A:554, A:553, BE:925' |
|
maxStorageGrowSize | 1Mb | Sets the maximum storage grow size in bytes. Parameter must be integer and not negative. Default value: 1Mb. |
mmfStorageGrowSize | 100Mb | Sets the storage grow size in bytes for memory mapped implementation. Parameter must be integer and not negative. This property makes sense only if MMFStorageFactory is set. Default value: 100Mb. |
mmfIndexGrowSize | 20Mb | Sets the index grow size in bytes for memory mapped implementation. Used only for storage with memory mapped index file. Parameter must be integer and not negative. This property makes sense only if MMFStorageFactory is set and at least one of incomingStorageIndexed or outgoingStorageIndexed is true. Default value: 20Mb. |
timestampsInLogs | true | Ability to write timestamps in the in/out log files. Default value: true. |
timestampsPrecisionInLogs | Milli | The desired pecision of timestamps in the in/out log files. Valid values: Milli | Micro | Nano. |
backupTimestampsPrecision | Milli | The desired pecision of timestamps in names of storage backup files. Valid values: Milli | Micro | Nano. |
logFilesTimeZone | System time zone | Specifies the time zone and affects on the time stamp prefix in the FIX in/out logs. The parameter should has the following format GMT[�]HH[:MM] or full name America/Los_Angeles. For sample: logFilesTimeZone=UTC |
enableLoggingOfIncomingMessages | false | Additional debug logging of incoming message with category com.epam.fixengine.inmsg.[SESSION_ID].
It allows logging of incoming messages on per-session basis with standard application logger.
For example, with the enabled option and the following log4j logger configuration <Logger name="com.epam.fixengine.inmsg.session1" level="DEBUG"/> incoming messages for session with id 'session1' will be logged. |
storageDirectory | logs | Storage directory could be either an absolute path
(like /tmp/logs or c:\fixengine\logs) or a relative
path, e.g. logs (this one is relative to the application start
directory). This property makes sense only if file storage is set. |
storageCleanupMode | None | This parameter specifies cleaning mode for message storage of closed sessions. Valid values: None | Backup | Delete. Default value: None. |
incomingLogFile | {0}.in | Incoming log filename template. {0} will be replaced with actual sessionID, {1} with actual SenderCompID, {2} with actual TargetCompID and {4} with actual session qualifier. {3} can be replaces with timestamp (see 'storageNameTimestamped') This property makes sense only if file storage is set. |
outgoingLogFile | {0}.out | Outgoing log filename template. {0} will be replaced with actual sessionID, {1} with actual SenderCompID, {2} with actual TargetCompID and {4} with actual session qualifier. {3} can be replaces with timestamp (see 'storageNameTimestamped') This property makes sense only if file storage is set. |
sessionInfoFile | {0}.properties | Info filename template. {0} will be replaced with actual sessionID, {1} with actual SenderCompID, {2} with actual TargetCompID and {4} with actual session qualifier. This property makes sense only if file storage is set. |
outgoingQueueFile | {0}.outq | Out queue file template. {0} will be replaced with actual sessionID, {1} with actual SenderCompID, {2} with actual TargetCompID and {4} with actual session qualifier. This property makes sense only if file storage is set. |
backupIncomingLogFile | {0}-{3}.in | Backup incoming log filename template. {0} will be replaced with actual sessionID, {1} with actual SenderCompID, {2} with actual TargetCompID, {3} with timestamp and {4} with actual session qualifier. This property makes sense only if backup storage is set. |
backupOutgoingLogFile | {0}-{3}.out | Incoming log filename template. {0} will be replaced with actual sessionID, {1} with actual SenderCompID, {2} with actual TargetCompID, {3} with timestamp and {4} with actual session qualifier. This property makes sense only if backup storage is set. |
storageNameTimestamped | false | Storage files contain creation/reset timestamp in name. If true then {3} in 'incomingLogFile' and 'outgoingLogFile' will be replaced with timestamp |
storageTimestampFormat | yyyy-MM-dd_HH-mm-ss | Format of timestamp in storage names. It's java.text.SimpleDateFormat pattern and pay attention to avoid delemeter chars that are not for file system file names |
Note: It is possible to use environment variables in configuration. Example: autostart.acceptor.TARGET_ID.password = ${ENV_PASSWORD}, where ENV_PASSWORD is the name of environment variable.
In addition to the global settings you can also define the behavior for a specific session or group of sessions. Description of session’s configuration can be placed into fixengine.properties near to global parameters or in a separate file. Antenna supports two formats of session’s configuration – properties and XML. You can find samples of such configuration files here:
Custom session configuration could override global settings for the session and also define additional parameters for session:
Property Name | Default Value | Description |
sessionType | Session type. In type not defined that session could be resolved in the same time as initiator and acceptor Valid values: acceptor | initiator | |
host | The connecting host for initiator session | |
port | The connecting port for initiator session | |
senderCompID | SenderCompID for fix session | |
senderSubID | SenderSubID for fix session | |
senderLocationID | SenderLocationID for fix session | |
targetCompID | TargetCompID for fix session | |
targetSubID | TargetSubID for fix session | |
targetLocationID | TargetLocationID for fix session | |
fixVersion | Identifies beginning of message and protocol version(Tag = 8). Valid values: FIX.4.0, FIX.4.1, FIX.4.2, FIX.4.3, FIX.4.4, FIXT.1.1 | |
appVersion | Application protocol version(Tag = 1128). Valid values: FIX.4.0, FIX.4.1, FIX.4.2, FIX.4.3, FIX.4.4, FIX.5.0, FIX.5.0SP1, FIX.5.0SP2 | |
backupHost | Backup host for initiator session | |
backupPort | Backup port for initiator session | |
incomingSequenceNumber | 0 | Incoming sequence number |
outgoingSequenceNumber | 0 | Outgoing sequence number |
processedIncomingSequenceNumber | 0 | Last valid incoming sequence number |
heartbeatInterval | 30 | Heartbeat interval |
LastSeqNumResetTimestamp | ||
fixFieldList | User defined fields for messages. If this list is not empty, Engine add it to each outgoing message. | |
outgoingLoginFixFieldList | Additional fields for outgoing Logon message |
Description of session’s configuration consists from a few sections:
sessionIDs=sessionID1,sessionID2
sessions.default.senderCompID=SCID sessions.default.storageFactory=com.epam.fixengine.storage.InMemoryStorageFactory
sessions.NYSE.targetCompID=NYSE
sessions.NYSE.validation=true
Description of session’s configuration consists from a few sections:
<config> <sessionIDs>sessionID1,sessionID2</sessionIDs> … </config>
<config> … <sessions> <default> <senderCompID>SCID</senderCompID> <storageFactory>com.epam.fixengine.storage.InMemoryStorageFactory</storageFactory> </default> </sessions> … </config>
<config>
…
<sessions>
<NYSE>
<targetCompID>NYSE</targetCompID>
<validation>true</validation>
</NYSE>
</sessions>
…
</config>
Please use methods of SessionParametersBuilder class to load session’s configuration:
//extract configuration for session from config SessionParameters details = SessionParametersBuilder.buildSessionParameters("initiators.xml", "sessionID1"); // create session we intend to work with final FIXSession session = details.createNewFIXSession();
It’s possible to skip parameter with path to configuration file if session’s configuration defined in defaulf configuration file (fixengine.properties)
//extract configuration for session from default config SessionParameters details = SessionParametersBuilder.buildSessionParameters("sessionID1"); final FIXSession session = details.createNewFIXSession();
Please use FIXServer.setConfigPath(String configPath) method to register configured sessions in servers:
FIXServer server = new FIXServer(); server.setConfigPath("acceptor.properties");
FIXServer will register session automatically if them is defined in default Antenna configuration file (fixengine.properties)
NOTE: Please make sure that SenderCompID and TargetCompId parameters are defined for all acceptor sessions. Server uses these parameters for resolving configuration for incoming sessions.