Mercurial > hg > orthanc-book
changeset 413:3ec4d890912e c-get
fix c-get
author | Alain Mazy <alain@mazy.be> |
---|---|
date | Tue, 12 May 2020 14:59:10 +0200 |
parents | 969d50e63b17 |
children | 47d772aa7b3e |
files | Sphinx/source/dicom-guide.rst Sphinx/source/faq/security.rst |
diffstat | 2 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/Sphinx/source/dicom-guide.rst Tue May 12 07:38:15 2020 +0200 +++ b/Sphinx/source/dicom-guide.rst Tue May 12 14:59:10 2020 +0200 @@ -606,7 +606,7 @@ but not as a service user (SCU). One way to use the C-Get against an Orthanc is by using the `DCMTK <https://support.dcmtk.org/docs/dcmconv.html>`__ toolkit:: - $ getscu -v localhost 4242 -aec ORTHANC -k "000d,0020=1.2...." -k "0008,0052=STUDY" + $ getscu -v localhost 4242 -aec ORTHANC -k "0020,000d=1.2...." -k "0008,0052=STUDY"
--- a/Sphinx/source/faq/security.rst Tue May 12 07:38:15 2020 +0200 +++ b/Sphinx/source/faq/security.rst Tue May 12 14:59:10 2020 +0200 @@ -154,7 +154,7 @@ * For each modality that is defined in ``DicomModalities``, selectively specify what DICOM commands are allowed to be issued by the SCU of this modality by setting the suboptions ``AllowEcho``, - ``AllowFind``, ``AllowMove`` and ``AllowStore``. For instance, a + ``AllowFind``, ``AllowMove``, ``AllowStore`` and ``AllowGet``. For instance, a modality could be allowed to C-STORE images, but be disallowed to C-FIND the content of Orthanc. Here is a sample configuration to define a single modality that is only allowed to send DICOM @@ -169,6 +169,7 @@ "AllowEcho" : false, "AllowFind" : false, "AllowMove" : false, + "AllowGet" : false, "AllowStore" : true } }