OnixS Eurex ETI Handler C++ library  9.19.0
API documentation
Getting Started

Inner Contents

 Adjusting Handler Settings
 
 Controlling Handler Logging
 
 Error Handling
 
 Events in the Handler
 
 Message Identification
 
 Trading
 
 Warning Handling
 

Detailed Description

All the Handler classes are encapsulated into the OnixS::Eurex::Trading namespace. Header files are collected in the master "OnixS/Eurex/Trading/Trading.h" header file.

How to get started

The typical way of using the Handler is as follows:

Session Logon (FIX Engine fields)

For FIX Engine fields in OnixS::Eurex::Trading::Logon class it is allowed to use the following values:

1 logon.fixEngineName = "OnixS Eurex ETI Handler";
2 logon.fixEngineVersion = Handler::version();
3 logon.fixEngineVendor = "Onix Solutions Ltd.";

But users may not use these values and use their own values instead.

Session Logon (Application fields)

For application fields in OnixS::Eurex::Trading::Logon class users must use their own values that represent their application. For example:

1 logon.applicationSystemName = "My Application";
2 logon.applicationSystemVersion = "1.0.0";
3 logon.applicationSystemVendor = "My Company";

Session Logon (Plain text password)

The Handler supports plain test password session logon. To use this feature, the following steps should be performed:

Session Logon (Password encrypted)

The Handler supports password encrypted session logon. To use this feature, the following steps should be performed:

To encrypt a password you will need an RSA public key. You can find these keys for Production and Simulation in the samples/Keys directory.

Please also see section 5.3.3 Password Encryption of Enhanced Trading Interface (ETI) Manual to get more information about password encryption.