Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

Nifi and ISO 8583

avatar
New Member

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
New Member

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
New Member

Great thanks. That gives me a place to start.