Where Can I start for HL7 v2 messaging (includes Medical Informations and documents) between two different systems? #4579
Replies: 1 comment 3 replies
-
It all depends on what type of data you want to send and your requirements. Most patient data can be sent via normal Hl7 v.2x messages, which are the simplest to implement. You could even base64 encode documents into the HL7 message or use Mirth to send them as attachments. You could also send all of the patients data in one document, like a CCD-A, but that is more complex to actually accomplish. And like you said, you could use FHIR (which has all of the stuff that a CCD-A has), but in order to use FHIR you need to setup a FHIR server, API's, database, etc. And using FHIR turns all of your existing patient data to "resources", so in essense, you are just duplicating data into a new format. FHIR seems to be the future, but if you do not have the requirements at this time to use it, then I would avoid it as its a big project to implement. |
Beta Was this translation helpful? Give feedback.
-
I am new to HL7. After getting through several online resources and HL7 website, I got an brief idea how HL7 works. So now as an student intern, I would like to to develop a program wich communicate with other system to exchange data using HL7 standard.
To achive the above task, after going through several websites and getting knowledge of HL7 for past two weeks. I thought I am on the right track, but later I realized nope, unfortunately I am not in the right track. First I tried using Fhir implementation in visual studio 2019 using C#, but I misserably failed ending up only to create or update or delete the existing data from the Smart Server. I could not able to connect two different systems to exchange data like patient details or documets and so on.
Is there any other ways to accomplise my task using HL7 standard to exchange data between to different systems. !!!!!!!!!!!!!!!!!!!!!!!!!!!
I would like someone to guide me here.
#hl7-fhir
#hl7
#hl7-v2
#hl7-cda
#hl7-dotnetcore
Beta Was this translation helpful? Give feedback.
All reactions