comparison Resources/Configuration.json @ 3818:4f78da5613a1 c-get

Add C-GET SCP support
author Stacy Loesch <stacy.loesch@varian.com>
date Fri, 27 Mar 2020 10:06:58 -0400
parents 0540b54324f1
children 3ab2d48c8f69
comparison
equal deleted inserted replaced
3815:c81ac6ff232b 3818:4f78da5613a1
93 93
94 // Enable the DICOM server. If this parameter is set to "false", 94 // Enable the DICOM server. If this parameter is set to "false",
95 // Orthanc acts as a pure REST server. It will not be possible to 95 // Orthanc acts as a pure REST server. It will not be possible to
96 // receive files or to do query/retrieve through the DICOM protocol. 96 // receive files or to do query/retrieve through the DICOM protocol.
97 "DicomServerEnabled" : true, 97 "DicomServerEnabled" : true,
98
99 // Enable DICOM server handling of incoming C-Get requests.
100 "DicomEnableCGet" : true,
98 101
99 // The DICOM Application Entity Title (cannot be longer than 16 102 // The DICOM Application Entity Title (cannot be longer than 16
100 // characters) 103 // characters)
101 "DicomAet" : "ORTHANC", 104 "DicomAet" : "ORTHANC",
102 105
203 **/ 206 **/
204 // "vitrea" : [ "VITREA", "192.168.1.1", 104, "Vitrea" ] 207 // "vitrea" : [ "VITREA", "192.168.1.1", 104, "Vitrea" ]
205 208
206 /** 209 /**
207 * By default, the Orthanc SCP accepts all DICOM commands (C-ECHO, 210 * By default, the Orthanc SCP accepts all DICOM commands (C-ECHO,
208 * C-STORE, C-FIND, C-MOVE, and storage commitment) issued by the 211 * C-STORE, C-FIND, C-MOVE, C-GET and storage commitment) issued by the
209 * registered remote SCU modalities. Starting with Orthanc 1.5.0, 212 * registered remote SCU modalities. Starting with Orthanc 1.5.0,
210 * it is possible to specify which DICOM commands are allowed, 213 * it is possible to specify which DICOM commands are allowed,
211 * separately for each remote modality, using the syntax 214 * separately for each remote modality, using the syntax
212 * below. The "AllowEcho" (resp. "AllowStore") option only has an 215 * below. The "AllowEcho" (resp. "AllowStore") option only has an
213 * effect respectively if global option "DicomAlwaysAllowEcho" 216 * effect respectively if global option "DicomAlwaysAllowEcho"
214 * (resp. "DicomAlwaysAllowStore") is set to false. 217 * (resp. "DicomAlwaysAllowStore") is set to false.
218 * The "AllowGet" option only has an effect if the global option
219 * DicomEnableCGet is set to true.
215 **/ 220 **/
216 //"untrusted" : { 221 //"untrusted" : {
217 // "AET" : "ORTHANC", 222 // "AET" : "ORTHANC",
218 // "Port" : 104, 223 // "Port" : 104,
219 // "Host" : "127.0.0.1", 224 // "Host" : "127.0.0.1",
220 // "Manufacturer" : "Generic", 225 // "Manufacturer" : "Generic",
221 // "AllowEcho" : false, 226 // "AllowEcho" : false,
222 // "AllowFind" : false, 227 // "AllowFind" : false,
228 // "AllowGet" : false,
223 // "AllowMove" : false, 229 // "AllowMove" : false,
224 // "AllowStore" : true, 230 // "AllowStore" : true,
225 // "AllowStorageCommitment" : false // new in 1.6.0 231 // "AllowStorageCommitment" : false // new in 1.6.0
226 //} 232 //}
227 }, 233 },