Creating ISO8583 Server using Spring Integration

Hi, in this post we are going to talk about Creating ISO8583 Server using Spring Integration , i know there is library called jPOS that has complete feature regarding financial transaction, especially ISO8583 messaging. But jPOS isn't free for commercial purposes, you need to buy its licence or make your code open source (i don't think that's possible for commercial purposes). Some Developers combine jPOS with Spring Application on a single project, that could work, yeah! But personally i don't like it, the difference in design pattern between Pull Configuration used by jPOS and Dependency Injection by Spring, our code will be more readable and clean if we are using one Pattern on our project. Well, that's what I thought! Instead of creating ISO8583 Server using jPOS and processing it with Spring code, we will Create ISO8583 Server using Spring Integration . More about Spring Integration Here . Server Configuration: Server Connection Fac...