OnixS C++ CME iLink 3 Binary Order Entry Handler  1.17.0
API Documentation
Configuration File Examples (XML, JSON, and INI-based)

XML-based Configuration File

1 <?xml version="1.0"?>
2 <configuration>
3  <CMEiLink3>
4  <SessionId>SessionId</SessionId>
5  <FirmId>FirmId</FirmId>
6  <AccessKey>AccessKey</AccessKey>
7  <SecretKey>SecretKey</SecretKey>
8  <LicenseStore>license</LicenseStore>
9  </CMEiLink3>
10 </configuration>

JSON-based Configuration File

1 {
2  "CMEiLink3":
3  {
4  "SessionId": "SessionId",
5  "FirmId": "FirmId",
6  "AccessKey": "AccessKey",
7  "SecretKey": "SecretKey",
8  "LicenseStore": "license",
9  }
10 }

INI-based Configuration File

1 SessionId=SessionId
2 FirmId=FirmId
3 AccessKey=AccessKey
4 SecretKey=SecretKey
5 LicenseStore=license