Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

EDI Parser in .NET

Has anyone created a .NET application that reads and parses an EDI file?

EDI file - used by shipping industries to provide information on shipment invoice.

like image 893
Batuta Avatar asked Dec 09 '22 13:12

Batuta


2 Answers

An Edi Serializer for dotnet that is free and opensource is EDI.Net. It supports X12, EdiFact as well as the UK only TRADACOMS formats. It even works on dotnetcore and NetStandard 1.0

*disclaimer I wrote the library

like image 176
cleftheris Avatar answered Jan 08 '23 10:01

cleftheris


Check out EDIFabric on codeplex http://edifabric.codeplex.com/

ediFabric is a .NET library (.dll) to convert EDI documents to .NET objects (or XML) and vice verse. EDI document rules are represented as .NET classes. There is one class (.cs file) per every EDI message type.

like image 32
chansteele Avatar answered Jan 08 '23 10:01

chansteele