Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 934 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 934 Bytes

About

This is an example of how to use Smooks to process a UN/EDIFACT message Interchange and from it generate an XML stream that can then be processed by standard XML tools (XSLT, XQuery etc) or by other Smooks components.

What this example illustrates is:

  1. How to configure the edifact:parser in a Smooks configuration (smooks-config.xml).
  2. How to configure the UNEdifactReader programmatically (as an alternative to #1 above).

See:

  1. The "Main" class in src/main/java/example/Main.java. You can easily modify the Main class (runSmooksTransform method) to configure the Smooks instance using the smooks-config.xml, or, programmatically within the Main class itself.
  2. The input UN/EDIFACT is in the PAXLST.edi file. It's an Interchange containing just a single PAXLST message.
  3. See the User Guide: https://www.smooks.org/v2/documentation/#edifact

How to run?

  1. mvn clean package
  2. mvn exec:exec