edi x12 to api

dnyandeo bharambe 96 Reputation points
2021-04-02T04:30:55.537+00:00

Hi
we are in process of migrating legacy EDI to azure. we will receive x12 files but in out we need REST API.
How I can achieve it? One way I am thinking process edi file and save XML or data in sql table and then write rest of API using API apps. Is there any better way I can chive it?

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,200 questions
Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
6,815 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Ryan Hill 25,476 Reputation points Microsoft Employee
    2021-04-03T03:54:03.933+00:00

    Hi @dnyandeo bharambe ,

    I would look at using Azure Functions to leverage serverless and consumption scalability. Even logic apps are a viable option if all you're doing is basic data processing. So, you wouldn't need to process the file in SQL although you could; but I wouldn't unless there was an absolute need for it.

    You can use a variety of triggers based on your needs; blob, timer, http. You can say for instance upload EDI files to a storage account through your API hosted in an app service or function app and have a separate BlobTrigger function that will process the new data. Web jobs are another option that you can use but with functions, the platform will automatically scale out based on incoming request and load.

    The link provided should get you started in the right direction but feel free to comment below if something doesn't make sense.

    0 comments No comments