Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Wiki Markup
{snippet:id=xsql|lang=xml|url=http://cvs.servicemix.codehaus.org/*checkout*/servicemix/base/src/test/resources/org/servicemix/components/xsql/example.xsql?rev=HEAD}

This example page could produce something like...

Code Block
xml
xml

<food>
  <cheese num="1">
    <id>1.00</id>
    <name>Edam</name>
  </cheese>
  <cheese num="2">
    <id>2.00</id>
    <name>Cheddar</name>
  </cheese>
  <cheese num="3">
    <id>3.00</id>
    <name>Brie</name>
  </cheese>
</food>

Then we can convert this into a JBI component and apply it in a pipeline as follows...

...