Running the XMLNSC Namespaces sample

Three message flows are provided for you to try in this sample. For details of how to run each one, use the following links:

If you encounter any problems when you run the sample, see Resolving problems when running samples in the IBM Integration Bus documentation.

The messages used to run this sample are based on the SaleListMessage used in some of the other IBM Integration Bus samples. Here is an example of the SaleListMessage with namespaces that is used in the sample:
<?xml version="1.0" encoding="UTF-8"?>
<samp:SaleListMessage
    xmlns:samp='http://www.samplemessage.broker.hursley.ibm.com'
    xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
    xsi:schemaLocation='http://www.samplemessage.broker.hursley.ibm.com/SampleMessageNamespace1.xsd'>
  <SaleEnvelope>
    <Header>
      <SaleListCount>1</SaleListCount>
    </Header>
    <SaleList>
      <Invoice>
        <Initial>K</Initial>
        <Initial>A</Initial>
        <Surname>Braithwaite</Surname>
        <Item>
          <Code>00</Code>
          <Code>01</Code>
          <Code>02</Code>
          <Description>Twister</Description>
          <Category>Games</Category>
          <Price>00.30</Price>
          <Quantity>01</Quantity>
        </Item>
        <Item>
          <Code>02</Code>
          <Code>03</Code>
          <Code>01</Code>
          <Description>The Times Newspaper</Description>
          <Category>Books and Media</Category>
          <Price>00.20</Price>
          <Quantity>01</Quantity>
        </Item>
        <Balance>00.50</Balance>
        <Currency>GBP</Currency>
      </Invoice>
      <Invoice>
        <Initial>T</Initial>
        <Initial>J</Initial>
        <Surname>Dunnwin</Surname>
        <Item>
          <Code>04</Code>
          <Code>05</Code>
          <Code>01</Code>
          <Description>The Origin of Species</Description>
          <Category>Books and Media</Category>
          <Price>22.34</Price>
          <Quantity>02</Quantity>
        </Item>
        <Item>
          <Code>06</Code>
          <Code>07</Code>
          <Code>01</Code>
          <Description>Microscope</Description>
          <Category>Miscellaneous</Category>
          <Price>36.20</Price>
          <Quantity>01</Quantity>
        </Item>
        <Balance>81.84</Balance>
        <Currency>EUR</Currency>
      </Invoice>
    </SaleList>
    <Trailer>
      <CompletionTime>2000-01-0100:00:01.000000</CompletionTime>
    </Trailer>
  </SaleEnvelope>
</samp:SaleListMessage>

Back to sample home