OnixS C++ FIX Engine
4.12.0
API Documentation
Home
Contents
Namespaces
Classes
Files
Example of Configuration File
Configuring the Engine
1
<?
xml
version
=
"1.0"
encoding
=
"utf-8"
?>
2
<
configuration
>
3
4
<
configSections
>
5
<
section
name
=
"FixEngine"
type
=
"System.Configuration.NameValueSectionHandler"
/>
6
</
configSections
>
7
8
<
FixEngine
>
9
<
add
key
=
"DictionaryFile"
value
=
"CmeTradingFixDialect.xml"
/>
10
<
add
key
=
"ListenPort"
value
=
"4500"
/>
11
12
<
add
key
=
"Reconnect.Attempts"
value
=
"3"
/>
13
<
add
key
=
"Reconnect.Interval"
value
=
"30"
/>
14
15
<
add
key
=
"Validate.NumberOfRepeatingGroupInstances"
value
=
"false"
/>
16
<
add
key
=
"Validate.RequiredFields"
value
=
"true"
/>
17
<
add
key
=
"Validate.UnknownFields"
value
=
"true"
/>
18
<
add
key
=
"Validate.UnknownMessages"
value
=
"true"
/>
19
</
FixEngine
>
20
</
configuration
>