Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

Nifi and ISO 8583

avatar
Explorer

Is there a way to use Nifi to convert a ISO 8583 message? Converting to json would be nice. Soon I'll be getting a feed from our Mainframe every hour and it will be in ISO 8583 format. I'll need to convert it and process it.

Thanks for any help,

Chris

1 ACCEPTED SOLUTION

avatar

Hi @Chris Mazo,

I am not aware of a processor to deal with ISO8583 messages. I think that your best options are:

  • write your own custom processor if you want to deal with some custom specifications
  • use ExecuteScript processor and write your code in a language like Groovy directly in NiFi (you have some great examples here: http://funnifi.blogspot.fr/)

Hope this helps.

View solution in original post

4 REPLIES 4

avatar

Hi @Chris Mazo,

I am not aware of a processor to deal with ISO8583 messages. I think that your best options are:

  • write your own custom processor if you want to deal with some custom specifications
  • use ExecuteScript processor and write your code in a language like Groovy directly in NiFi (you have some great examples here: http://funnifi.blogspot.fr/)

Hope this helps.

avatar
Explorer

Thanks, I'll look into your suggestion and see what I can come up with.

avatar
Master Guru

It would be pretty easy to write a processor that uses this library:

https://github.com/vikrantlabde/iso8583-Java or

https://github.com/chochos/j8583

Chris Mazo

avatar
Explorer

Great thanks. That gives me a place to start.