Skip to content

Restrict C MOVE destinations

Vrinda edited this page Mar 27, 2023 · 1 revision

Overview

One can use this feature if one's application needs to restrict C-MOVE Destinations to a configurable list of AE Titles for each Archive AE.

Configuration

One may either

  • create a LDIF file (e.g.):

      version: 1
      dn: dicomAETitle=DCM4CHEE,dicomDeviceName=dcm4chee-arc,cn=Devices,cn=DICOM Configuration,dc=dcm4che,dc=org
      changetype: modify
      add: dcmAcceptedMoveDestination
      dcmAcceptedMoveDestination: STORESCP1
      dcmAcceptedMoveDestination: STORESCP2
    

    and import it to the LDAP Server by using the ldapmodify command line utility.

  • or use the Add Attribute... and Add Value... function of Apache Directory Studio to add attributes on Application Entity level (e.g.: dicomAETitle=DCM4CHEE) in the Archive Configuration.

One may refer to Archive Network AE to understand the description of attributes.

Note :

  • Ensure that devices are configured for these accepted move destinations.

Go to the Control tab on Configuration page in archive UI and reload the configuration.

Testing

One can test this feature using the dcm4che tools as shown below :

  1. Start the storescp tool with AE title as STORESCP1

        storescp -b STORESCP1:<portNo>
    
  2. Use the movescu tool to send studies to this destination.

        movescu -c DCM4CHEE@localhost:11112 -m StudyInstanceUID=<studyUID> --dest STORESCP1
    
  3. Verify the objects at the destination. Also in the log snippets of movescu and storescp tool windows, one can see the response status as status=0H

Clone this wiki locally