Comment on page
The Message
Let's define our schema (message) for sending our Hello World from one stage to another.
Remember our diagram from before. We'd like to go from one stage, that's producing a name, to another stage, which would display your name. Our message should look pretty simple, containing one field for the name.
Under
src/test/resources,
create a new file named HelloWorldSchema.xml
with the following content:<?xml version="1.0" encoding="UTF-8"?>
<templates xmlns="http://www.fixprotocol.org/ns/fast/td/1.1">
<template name="HelloWorldMessage" id="1">
<string name="GreetingName" id="100" charset="unicode"/>
</template>
</templates>