ipm - Fixed Production autostart issue
IRIS-FHIR-Lab is a web application that connects to any open FHIR server and gets all of its resources, dynamically lists down resources, and displays its details both in JSON and human-readable format. The application also has the functionality to Create Patient/Patient observation resources, display Patient related resources, transform FHIR messages to HL7 V2 and HL7 V2 to FHIR messages
https://irisfhirlab.demo.community.intersystems.com/csp/fhirlab/index.csp by using SuperUser | SYS
Make sure you have git and Docker desktop installed.
Clone/git pull the repo into any local directory
$ git clone https://github.com/mwaseem75/iris-fhir-lab.git
Open the terminal in this directory and run:
$ docker-compose up -d
Open IRIS for Health installation with IPM client installed. Call in any namespace:
USER>zpm "install iris-fhir-lab"
Navigate to http://localhost:32783/csp/fhirlab/index.csp to run the application
As part of the default setup, two servers are pre-configured with the below configuration:
However, to add other open FHIR Server, click on the add server button
Enter the information and select the add server button
To Remove the server just click on the Delete link
after the confirmation, the server will be deleted
Click on the Resources List to view Resource records of connected FHIR Server and further clink on the record itself to view JSON and Human readable details of selected Resource
To search, type resource in the search field
Click on the Patient resource and then click on patient ID in the patient resource detail list
The system will list patent-related resources
Select Create Resource from the menu, enter patient information, and click the post resource button
To view the added patient resource, click on the Patient Resources menu
Select Create Observation from the menu and enter observation resource data, Click Post Observation to create an observation
To view created observation, navigate to the Patient Resources menu and select Patient ID then select Observation
Select the Patient Resource, then select the FHIR HL7 tab or Resource detail tab and click on the “Transform FHIR to HL7 V2” button.
Transformation is utilizing IRIS Digital Health Interoperability to convert the FHIR message to the HL7 V2 message.
HS.FHIRServer.Interop.Service Business Service sends FHIR message to the FHIRRouter business process,
FHIRRouter business process sends FHIR message to the FHIR_SDA business process,
FHIR_SDA business process sends SDA message to the SDA_HL7 business process which finally converts SDA message to HL7 V2 message.
FHIRRouter Business Process
Visual Trace
Select HL7 to FHIR from the menu and enter HL7 V2 data, Click the convert button to transform HL7 message to FHIR message
HL7 to FHIR Transformation is also using production to convert the HL7 V2 message to the FHIR message.
HL7_Http_Service Business Service sends HL7 message to HL7_SDA process and then HL7_SDA sends SDA data to SDA_FHIR process, which finally converts it to FHIR
InterSystems IRIS FHIR Documentation
FHIR API
Developer Community FHIR section
Two FHIR servers are added by default. You can Add/Remove the FHIR server as well.
FHIR sample data is imported already, To view Open Postman and make a GET call for the preloaded Patient:
http://localhost:32783/csp/fhirserver/fhir/r4/Patient/3
Guillaume Rongier for: iris-healthtoolkit-service template for guidance
Thanks