How to generate EDIFACT (IFIMIN) messages from .net (C #)?

I am about to start a project where I need to create an EDIFACT message (post type: IFTMIN ). Since my project is based on .net (C # + asp.net) I am looking for advice on generating EDIFACT messages in .net.

Is there a free (possibly open source) library that can help generate an EDIFACT message? Are there any pitfalls regarding coding, etc.?

If anyone has an example code I'd love to take a look.

Best wishes, Egil.

+2


source to share


1 answer


I was unable to find a framework for edifact that we could use. In the end, we used Libabry's FileHelpers to read the files and coded the rest by hand. The FileHelpers lib supports record based files in the same way as edifact.



+2


source







All Articles