Skip to content

Default Scheduled Station for HL7 Order Messages

Vrinda edited this page Mar 27, 2023 · 1 revision

Overview

This page explains how one can create a default scheduled station scheduledstation device required for HL7 order messages processing. While processing the HL7 order messages, archive requires this default scheduled station device when :

  • the information related to the Scheduled Station Name and AE Title is not present in incoming HL7 order messages.
  • there are no hl7OrderScheduledStation rules configured in archive configuration.
  • there are no matching hl7OrderScheduledStation rules found in archive configuration.

The requirement is defined in Note 9 on page 109 of specification.

Configuration

Using Archive UI

Using LDAP

One may create a LDIF file and import it to the LDAP Server by using the ldapmodify command line utility.

    version: 1
    
    dn: dicomDeviceName=scheduledstation,cn=Devices,cn=DICOM Configuration,dc=dcm4che,dc=org
    objectClass: dicomDevice
    dicomDeviceName: scheduledstation
    dicomInstalled: TRUE
    
    dn: cn=dicom,dicomDeviceName=scheduledstation,cn=Devices,cn=DICOM Configuration,dc=dcm4che,dc=org
    objectClass: dicomNetworkConnection
    dicomHostname: localhost
    cn: dicom
    dicomPort: 104
    
    dn: dicomAETitle=SCHEDULEDSTATION,dicomDeviceName=scheduledstation,cn=Devices,cn=DICOM Configuration,dc=dcm4che,dc=org
    objectClass: dicomNetworkAE
    dicomAETitle: SCHEDULEDSTATION
    dicomAssociationAcceptor: TRUE
    dicomAssociationInitiator: TRUE
    dicomNetworkConnectionReference: cn=dicom,dicomDeviceName=scheduledstation,cn=Devices,cn=DICOM Configuration,dc=dcm4che,dc=org
Clone this wiki locally