Skip to content

leonartambunan/camel-component-iso8583-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

Camel Component - ISO8583 Client

ISO8583 Client as Camel Component

Libraries

How to Build

$ mvn -DskipTests clean package

How to Use

ISO8583 Specification

Put your iso8583client.xml file (containing j8583 message specification) in the root of Java class loader (usually as src/main/resources/iso8583client.xml)

Code

import com.github.kpavlov.jreactive8583.iso.ISO8583Version;
import com.github.kpavlov.jreactive8583.iso.J8583MessageFactory;
import com.solab.iso8583.IsoMessage;
import com.solab.iso8583.IsoType;
import com.solab.iso8583.IsoValue;
import com.solab.iso8583.MessageFactory;
import com.solab.iso8583.parse.ConfigParser;
import org.apache.camel.Exchange;
import org.apache.camel.Processor;
import org.apache.camel.builder.RouteBuilder;

.....

from("routexxx")  //the Exchange body from routexxx must contains instance of com.solab.iso8583.IsoMessage object
  .to("iso8583client:localhost:7001")
  .end();

About

camel-component-iso8583-server

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages