Reputation: 805
Our integration depends on spring integration, and some of our customers will send us EDI messages (EDIFact or AX12), would like to know if Spring integration will provide standard EDI transformers for us to use?
We need 2 kinds of transformers for our integration
Upvotes: 0
Views: 864
Reputation: 121550
See here:, Is there any good X12 parser in Java?. Looks like most solutions for passing EDI are commercial. So, no, we are not going to provide out-of-the-box transformers in Spring Integration since we can’t rely on the non-Open Source library. But you go the route where you choose a library and use it from custom transformers in Spring Integration. Probably simple POJO method invocation would be enough for you.
Upvotes: 1