# HG changeset patch # User Alain Mazy # Date 1589261895 -7200 # Node ID 969d50e63b179f4952494decdfcabd1ba5d7de62 # Parent b4cc2b6a9f1335939b42c1ea6f8c330c98b64ca5 first info about c-get diff -r b4cc2b6a9f13 -r 969d50e63b17 Sphinx/source/dicom-guide.rst --- a/Sphinx/source/dicom-guide.rst Thu May 07 14:47:22 2020 +0200 +++ b/Sphinx/source/dicom-guide.rst Tue May 12 07:38:15 2020 +0200 @@ -571,9 +571,9 @@ popular and widespread way to initiate a query/retrieve against a PACS server. The DICOM standard features an `alternative mechanism called C-Get -`_. -As of Orthanc 1.4.1, C-Get is not supported yet (but work is in -progress). +`_ +that has been introduced in Orthanc 1.7.0 (see below). + *Note 2:* As :ref:`written above `, the Orthanc engine is quite generic and is compatible with virtually any image @@ -591,6 +591,26 @@ ` (by default, all the transfer syntaxes are enabled). +.. _dicom-get: + +C-Get: retrieve +^^^^^^^^^^^^^^^ + +Once you know that a DICOM resource is available on a particular +DICOM node, you may retrieve it directly without performing a C-Find +before. This can be done once you know one ore more of the unique +key attributes (``PatientID``, ``StudyInstanceUID``, ``SeriesInstanceUID`` +or ``SOPInstanceUID``). + +As of Orthanc 1.7.0, Orthanc implements C-Get as a service provider (SCP) +but not as a service user (SCU). One way to use the C-Get against an +Orthanc is by using the `DCMTK `__ toolkit:: + + $ getscu -v localhost 4242 -aec ORTHANC -k "000d,0020=1.2...." -k "0008,0052=STUDY" + + + + Using HTTP instead of the DICOM protocol ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^