Connection
#114
-
how do i connect and get hl7 messages from connected devices? |
Beta Was this translation helpful? Give feedback.
Answered by
senaranya
Dec 11, 2023
Replies: 1 comment 3 replies
-
This library can't be used for receiving HL7 messages. You need to use a HL7 listener. You can search for "MLLP" (MLLP is the protocol using which HL7 messages are sent) at packagist.org. These listeners are TCP/IP socket servers with some very basic additional logic, so it's also possible to build one manually without too much effort, e.g. using ReactPhP |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
rmanalu15
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This library can't be used for receiving HL7 messages. You need to use a HL7 listener. You can search for "MLLP" (MLLP is the protocol using which HL7 messages are sent) at packagist.org. These listeners are TCP/IP socket servers with some very basic additional logic, so it's also possible to build one manually without too much effort, e.g. using ReactPhP