EDI.Net
EDI.Net copied to clipboard
Information about EDI
Can your library generate and parsing IFTSTA OR IFSUM X96 edi files?? you try to implement an application to parse and generate edi file which we send to our client can you suggest some samples ?
Hi Constantinos and thanks for your interest in EDI.Net.
Both IFTSTA & IFCSUM are transmissions based on the EDIFact grammar so yes the library can help you generate and parse both.
If you are looking for examples you can find some if you clone the repository and go to the "Tests" project. There are numerous examples that test various aspects of the library. The samples are not complete but can get you started.
Actually there is an example in the tests project for IFCSUM to get you going https://github.com/indice-co/EDI.Net/blob/e56f1b0aef48f4ec650a2e02f0c845323c3f2d81/test/indice.Edi.Tests/EdiTextReaderTests.cs#L832
and the models are here https://github.com/indice-co/EDI.Net/blob/e56f1b0aef48f4ec650a2e02f0c845323c3f2d81/test/indice.Edi.Tests/Models/EDIFact_D01B_IFCSUM.cs#L9
** these are only samples not considered to be complete solutions.
thanks, a lot, I will test it