FIX Antenna .NET Core Release notes
FIX Antenna .NET Core 1.2.2
FIX Antenna .NET Core 1.2.2 is released on .
Fixed Bugs
- Fixed the issue when the old logs could not be removed from the storage when storageCleanupMode=Delete and storageFactory=Epam.FixAntenna.NetCore.FixEngine.Storage.SlicedFileStorageFactory.
FIX Antenna .NET Core 1.2.1
FIX Antenna .NET Core 1.2.1 is released on .
Fixed Bugs
- Fixed the issue when the race condition occurred on accepting the new FIX connection.
FIX Antenna .NET Core 1.2.0
FIX Antenna .NET Core 1.2.0 is released on .
New Features and Improvements
Other Changes
- Stopped testing TLS 1.0 and 1.1 versions.
Fixed Bugs
- Fixed the issue when the outgoing Logon message did not contain the 141=Y field when the incoming Logon message contained it and the ignoreResetSeqNumFlagOnReset was set to 'true'.
- Fixed the issue when FIX Antenna .NET Core unexpectedly sent not-required TestRequests messages.
- Fixed the issue when FIX Antenna .NET Core added misleading log entry "Skipping message" when TestRequest messages were processed correctly.
- Fixed the issue when the ByteByffer.Add(char) method was encoding-dependent.
FIX Antenna .NET Core 1.1.0
FIX Antenna .NET Core 1.1.0 is released on .
New Features and Improvements
Fixed Bugs
- Fixed the issue when FIX Antenna .NET Core crashed on receiving an incoming HTTP connection.
FIX Antenna .NET Core 1.0.2
FIX Antenna .NET Core 1.0.2 is released on.Â
Source code and documentation are available on GitHub under an Apache 2.0 license.
Breaking changes
API of version 1.0 is not compatible with 0.9.x versions.
- All namespaces were reorganized and renamed with the 'Epam.' prefix.
- Many methods converted to properties.
- The number of binaries was reduced.
New Features and Improvements
FIX Antenna .NET Core 0.9.4
FIX Antenna .NET Core 0.9.4 is released on .
New Features and Improvements
FIX Antenna .NET Core 0.9.3
FIX Antenna .NET Core 0.9.3 is released on .Â
New Features and Improvements
Fixed Bugs
- Fixed the issue when FIX Antenna .NET Core didn't send the SendingTime(52) tag in the message body for the Sequence Reset(35=4) message.
- Fixed the issue when the MmfStorageFactory could not initialize the index file when FIX Antenna .NET Core was restarted.
FIX Antenna .NET Core 0.9.2
FIX Antenna .NET Core 0.9.2 is released on .Â
FIX Antenna .NET Core 0.9.2 is now compatible with the latest 4.8 .NET framework version. Testing was performed on .NET Core 3.1 and .NET Framework 4.8 platform versions.
The 'obj' and 'build' folders must be manually cleaned in the sample application's folder if there is a need to sequentially run the same sample on a different target platform.
New Features and Improvements
- Optimized memory allocation on message receiving.
Ability to choose the IP protocol version between IPv4 or IPv6. Dual mode is used by default.
Fixed Bugs
- Fixed the issue when FixServer didn't shut down on calling the Stop() function when FixSessionManager was not explicitly stopped.
FIX Antenna .NET Core 0.9.0
FIX Antennaâ„¢ .NET Core is a high-performance and low-latency .NET FIX Engine.
The engine is based on .NET Standard 2.0 and is compatible with any platform that supports .NET Standard 2.0 and further.
The Engine is intended to be used under .NET Core starting from version 3.1 and further and was tested under this platform.
One of the key benefits of using .NET Standard and .NET Core is the ability to use Engine under different OS: Windows, Linux, Mac.
Requirements & Compatibility
- Libraries compatibility: any OS with a .NET platform that supports .NET Standard 2.0 and further (.NET Core is preferable).
- Samples compatibility: any OS with installed .NET Core 3.1 and further.
- Samples and libraries were tested with .NET Core under Windows 10 and Linux Ubuntu 16.04.
FIX Engine
- Supports FIX 4.0 - FIX 4.4, FIX 5.0, FIX 5.0 SP1, FIX 5.0 SP2.
- Supports all FIX message types (pre-trade, trade, post-trade, market data, etc.).
- Customizable FIX protocol with user-defined tags and message types.
- Sequence numbers management.
- Microseconds in FIX tags (MIFID II).
- Smart resend request handling.
- Validation against FIX dictionaries.
- Unregistered acceptors handling.
- Standard FIX routing based on DeliverTo and OnBehalfOf fields.
- Store messages while disconnected.
- Switch to the backup connection.
- Round-robin reconnects option to multiple backup destinations for an initiator session.
- Administrative Plugin for Fix Antenna.
Sessions Processing
- Session Qualifiers
- Multiple FIX sessions
- Initiator/Acceptor Sessions
- Auto-reconnect Session
- Transient Sessions
- Restore state after failure (Persistent Session)
- Pluggable session level
Storage
- Supported Storage Types:
- Null storage
- In-memory storage
- Persistent storage
- Persistent Memory Mapped based storage
- Storage management (get a message by seq. num, get creation time)
Performance Tuning
- Ability to enable or disable Nagle's algorithm to minimize latency or maximize throughput
- Ability to manipulate the internal outgoing queue size to get maximum throughput (process messages in batch) or lower latency (minimal time in queue)
- Ability to use different levels of message validation to balance between reasonable correctness and good performance:
- Well formedness validation
- Validation of allowed message fields
- Validation of required message fields
- Validation of message fields order
- Validation of duplicated message fields
- Validation of field values according to defined data types
- Validation of repeating group fields
- Conditionally required fields
- Ability to choose the sending mode. Synchronous sending gives lower latency, but asynchronous is preferable for getting a better throughput
- Ability to configure CPU affinity to enable the binding and unbinding of a thread to a CPU, so that the thread will execute only on the designated CPU rather than on any CPU
- Setting send and receive socket buffer sizes for TCP transport options
Configuration
- Supports configuration in properties file format
- Ability to configure default behavior and custom sessions in the same configuration file
Monitoring and administration
- Proprietary built-in remote monitoring and administrative interface for sessions monitoring and management
- Public API to override and/or extend existing administrative instructions
- Rich monitoring and administration GUI (FIXICC) out of the box
Message composition API
- Provides the following functionality:
- Creating a message from a raw FIX string (parse)
- Serializing a FIX object message to a raw FIX string
- Adding, removing, modifying FIX fields, and repeating groups
- The ability of internal pooling to reduce memory allocations
- FIX flat message model - generic model to work with the abstract FIXMessage class via fields and groups getters and setters, which gives the highest performance
- RG API - API for working with repeating groups. Similar to FIX flat message model but allows to work with structures
- Prepared messages - message template for the faster sending the messages with the same structure but with different values
- Efficient getters and setters for working with values as with primitive type to reduce garbage production
Security
- Logon Customization
- Standard FIX authorization utilizing username and password fields in FIX Logon message
- Strategies for accepting incoming sessions:
- Auto-accept incoming sessions (to simplify development and testing)
- Auto-decline non-pre-configured sessions
- IP range based whitelisting for incoming connections
- CME Secure Logon support
Options
- Option "disconnectOnLogonHeartbeatMismatch"
- "resetThreshold" configuration option (handling of counterparties that ignores sequence reset and continues to send old sequence numbers)
- Option "resetQueueOnLowSequence"
Services
- Licensing system
- Logging to text files
- Logging to the socket (Splunk) via NLog
- ASCII codes in FIX logs file names
- Configuration of session parameters from .XML
Packaging
- A zip archive package is provided
- Sample EchoServer
- Sample Connect to gateway
- User’s guide
- Reference Manual (with a description of all classes and methods)
Safety
- Listen port management (Listen port per session)