TroubleshootingTable of ContentExternal Resources
  1. Q. What is the address the handler uses to join the UDP multicast?

    A. By default all available network interfaces are used. To specify the particular network interface the LocalNetworkInterface property is used for both feed A and B. If you want to use different interfaces for feeds you can use LocalNetworkInterfaceA and LocalNetworkInterfaceB properties.

    For example:

    CopyC#
    Handler.LocalNetworkInterface = System.Net.IPAddress.Parse("10.147.24.2"); // "10.147.24.2" is the IP address of the network card that faces CME.
    or
    Handler.LocalNetworkInterfaceA = System.Net.IPAddress.Parse("10.147.24.3"); // "10.147.24.3" is the IP address of the network card that faces CME.
    Handler.LocalNetworkInterfaceB = System.Net.IPAddress.Parse("10.147.24.4"); // "10.147.24.4" is the IP address of the network card that faces CME.
  2. Q.How can I extract the Symbol (Tag 55, aka Instrument Group Code) field from the Security Definition (d) messages from the CME Multicast FIX/FAST Data feed?

    A. This field is available via the Definition field.

    For example:

    CopyC#
    void OnSecurityDefinitionReceived(Handler.SecurityDefinitionReceivedEventArgs e)
    {
      string symbol = e.Definition[Tags.Symbol];
    }