Home Applications POST HL7 Message to REST API Endpoint

POST HL7 Message to REST API Endpoint

This application is not supported by InterSystems Corporation. Please be notified that you use it at your own risk.
0
0 reviews
0
Awards
137
Views
0
IPM installs
1
1
Details
Releases
Reviews
Issues
Pull requests
POST an HL7 message converted to JSON to a REST API Endpoint

What's new in this version

Initial Release

This is a mock example of a production that takes in HL7 messages via a TCP port, processesses them to decide whether they are identical to previous messages or not, and if the latter (assuming it is a valid message) POSTS a JSON message to a REST API Endpoint as well as updates internal tables to maintain patient records.

A simplified image is here:

Production Diagram 4

The production looks as follows:

image
image

We can take a peak inside the process via a message trace:

  1. The message is received at the TCP Port and fowarded to the router
  2. The router processes it via the rules it has (in this case identifies a ORU_R01:2.3 HL7 message and converts it to JSON)
  3. The relevant information is forwarded to the Check Message process where it sends out a request to see if the current information already exists

4 & 5) The request in step 3 is received, the table is checked and we send back confirmation that this is a new message

  1. We attempt to POST this information to the REST API Endpoint
  2. We are informed that the POST received a successfull response
  3. The internal table is updated accordingly

image

The ‘brains’ of the operation is the buisness processes. The best part of it all is that it’s simple to make! You don’t need to spend hours on stackoverflow understanding functions you will never use again like in other systems.
All you do is ‘draw’ what you want, compile, and we will make that class for you without you needing to intervene.

image

Of course, there is lots more scenarios and possibilities, but we just wanted to create a simple example demonstrating some of the possibilities.

What’s that? You want to see another scenario? Okay, let’s say your organization receives repeated messages and why would you want to be sending out the same information multiple times?

In that case the BP will identify that the message already exists and not POST it, nor create duplicates in the table:

image

Finally this is our table of our two patients: Morty, Smith, and Rick, Sanchez (no correlation to Smith, Morty or Sanchez, Rick). After multiple updated patient records only the most updated ones are stored in the table (though of course this can be changed as one would want).

Before:

image

After:

image

For info about creating the REST Dispatch and Implementation classes check out our colleague, Guillaume Rongier’s great repo here.

Finally, check out Lorenzo Scalese’s repo for creating an IRIS Interoperability Production generator from an OpenAPI Specification.

Final note: If you would like to run this example on your own environment you must configure where you will be sending the REST API requests to. You can import the code via the XML containing all relevant classes here, compile it and configure your POST Patient Buisness Operation. In the example the http server is the same IRIS instance, which configured an endpoint to receive requests, and respond accordingly. You can check out the specification, dispatch, and implementation classes for it here. If you’re looking for a simple way to test the production, you can send HL7 messages over TCP with this great VSCode Extension.

Read more
Version
1.0.015 Dec, 2023
Category
Technology Example
Works with
InterSystems IRISInterSystems IRIS for Health
First published
15 Dec, 2023