This example hosts ediFabric Native behind an ASP .NET Core API. It translates X12 EDI to JSON and back, validates transaction sets, and generates acknowledgments using the C# bindings from edifabric-csharp-bindings.
The native library is a self-contained shared library. No EdiFabric.Api NuGet package (aka EdiNation InHouse) is required on the target machine beyond this ASP .NET host.
ediFabric Native API for ASP .NET Core on GitHub
Prerequisites
- Visual Studio or the .NET 10 SDK.
- Download Postman - it's an application to consume/test your API.
- The native library for your platform:
| Platform | File |
|---|---|
| Windows | edifabric-x12-tools.dll |
| Linux | edifabric-x12-tools.so |
| macOS | edifabric-x12-tools.dylib |
Download ediFabric Native Library
Put the library in the repository root or in EdiFabric.Api.ASPNET, or set LibraryPath in appsettings.json / EDIFABRIC_X12_LIB. The project copies it next to the executable on build when it is found in those folders.
License
Set ApiKey in appsettings.json to your serial. The free-plan serial is:
bd96a836feca45cb91c86ee65d281f52
The free plan authorizes with set_serial only. Tokens (TokenFileCache) are available for the Enterprise license.
Setup
Rebuild the solution. If there are any build errors, contact us at https://support.edifabric.com/hc/en-us/requests/new for assistance.
The C# bindings live in EdiFabric.Api.ASPNET/Native (NativeMethods.cs and EdiFabricX12.cs), copied from the edifabric-csharp-bindings repository.
By default the API uses the online spec service (SetMap with "default": "<serial>"). To use local JSON models instead, place a map/map.json next to the web project (see the bindings README for the map format).
Debug the ASP .NET application in Visual Studio
- Open solution EdiFabric.Api.ASPNET.sln in Visual Studio.
-
Open the file appsettings.json and change ApiKey to your paid key or leave it to use the free key.
- Rebuild the solution and ensure all package dependencies were installed correctly.
- Run the EdiFabric.Api.ASPNET project in debug mode.
Test the ASP .NET application
- Download and open Postman. Let's test the X12 read operation first.
-
Open a new tab in Postman, select the POST method, and add the following request URL (full API reference):
{Your ASP.NET application URL}/x12/read -
Go to the Body tab, select the "binary" content, and then browse to your text X12/HIPAA file.
If you don't have a test file, use one of ours - X12 HIPAA, X12.
-
Finally, hit the Send button and inspect the response body:
Cache tokens
By default ediFabric Native would request a token from the Authentication API every time. To avoid these calls altogether and work in a fully offline mode, implement a token cache.
Tokens are only available for the Enterprise plan
To implement the token cache, open the file X12Controller.cs and follow the instructions in the comments:
Cache models
By default ediFabric Native would request a new JSON model from the Authentication API every time a new transaction needs to be parsed. To avoid these calls altogether and work in a fully offline mode, create a model map.
SetMap tells the engine where to find transaction-set models. Keys are message:version. Set default to your serial to resolve unmapped transaction sets through the online spec service, or leave it null and map everything locally.
{
"default": null,
"maps": {
"837:005010X222A1": { "type": 1, "name": "837P.json", "location": "/opt/models" },
"850:005010": { "type": 1, "name": "850.json", "location": "/opt/models" }
}
}
All X12 transactions, such as 837P, 834, 850, etc. are represented as proprietary JSON. Download a standard model from EdiNation Spec Library, or a custom model from EdiNation Spec Builder. Create/modify models in OpenEDI format, upload them in EdiNation Spec Builder and download them as JSON for use in ediFabric Native.
To download a model in either EdiNation Spec Library or EdiNation Spec Builder, select the model first, then in the JSON view select the Download button in the top right corner.
Choose to download as ediFabric Native. Models are JSON files, and must be included, together with the map, in the deployment package.

Comments
0 comments
Please sign in to leave a comment.