GithubHelp home page GithubHelp logo

Comments (3)

donmendelson avatar donmendelson commented on June 15, 2024

The change traces to RC3 issue "Fixed and variable-length String versus non-character data" that was accepted prior to moving the project to GitHub. That enhancement expanded string and data types to:

  • Fixed-length character array - primitive type of an element is char
  • Variable-length character string - element is char
  • Fixed-length opaque data - element is an octect, also known as byte, specified as uint8
  • Variable-length opaque data - element is octet

In sum, text fields can be fixed or variable-length and data can be fixed or variable-length. The difference between them is that text fields are subject to a character set (US-ASCII is the default character set in FIX) while opaque data has no internal structure known to the message encoding.

from fix-simple-binary-encoding.

RFrenkel avatar RFrenkel commented on June 15, 2024

Thank you, Don!
Could you confirm that both Int and char as primitive types of data should be working fine for RC2 implementations?

from fix-simple-binary-encoding.

donmendelson avatar donmendelson commented on June 15, 2024

The RC2 schema is available here Simple Binary Encoding - Release Candidate 2 - XML Schema (XSD)

These are the enumerated primitive types:

                    <xs:restriction base="xs:token">
                        <xs:enumeration value="char"/>
                        <xs:enumeration value="int8"/>
                        <xs:enumeration value="int16"/>
                        <xs:enumeration value="int32"/>
                        <xs:enumeration value="int64"/>
                        <xs:enumeration value="uint8"/>
                        <xs:enumeration value="uint16"/>
                        <xs:enumeration value="uint32"/>
                        <xs:enumeration value="uint64"/>
                        <xs:enumeration value="float"/>
                        <xs:enumeration value="double"/>
                    </xs:restriction>

from fix-simple-binary-encoding.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.