HL7 Receiver - dcm4che/dcm4chee-arc-light GitHub Wiki
This page explains how one can add one or more HL7 receivers to their configuration. HL7 receivers are needed if one wants to make use of features Forward received HL7 messages and / or Synchronize external HL7 receivers on Patient Information Updates
- Go to
Menu -> Configuration
, then onDevices
page, selectCreate device
fromMore functions
dropdown. - Enter value in field
Device Name
and set value ofinstalled
toTrue
andSave
. - Go to its
Child Objects
and+ Add
aNetwork Connection
. Enter values in fieldsName
,Hostname
,Port
andSave
. - Next go to its
Extensions
, select+
for addingNetwork Connection Extension
to append proprietary dcm4che attributes. SelectHL7
fromProtocol
dropdown andSave
. - Next
Extensions
of newly created device andEdit extension
ofDevice Extension
. Go to theChild Objects
and+ Add
aHL7 Applications
. Enter value in fieldHL7 Application name
and select a connection forNetwork Connection Reference
andSave
.
One may either
-
create a LDIF file (e.g.):
version: 1 dn: dicomDeviceName=hl7rcv,cn=Devices,cn=DICOM Configuration,dc=dcm4che,dc=org dicomInstalled: TRUE dicomDeviceName: hl7rcv objectClass: dicomDevice objectClass: dcmDevice dn: cn=hl7,dicomDeviceName=hl7rcv,cn=Devices,cn=DICOM Configuration,dc=dcm4che,dc=org dicomHostname: localhost dicomPort: 2576 objectClass: dicomNetworkConnection objectClass: dcmNetworkConnection dcmProtocol: HL7 cn: hl7 dn: hl7ApplicationName=HL7RCV|DCM4CHEE,dicomDeviceName=hl7rcv,cn=Devices,cn=DICOM Configuration,dc=dcm4che,dc=org objectClass: hl7Application dicomNetworkConnectionReference: cn=hl7,dicomDeviceName=hl7rcv,cn=Devices,cn=DICOM Configuration,dc=dcm4che,dc=org hl7ApplicationName: HL7RCV|DCM4CHEE
and import it to the LDAP Server by using the ldapmodify command line utility.
One may refer Device, Network Connection, dcm4che Network Connection and HL7 Application to understand the description of attributes.
Go to the Control tab on Configuration page in archive UI and reload the configuration.