comparison Resources/Configuration.json @ 3799:320a2d224902

merge
author Alain Mazy <alain@mazy.be>
date Wed, 01 Apr 2020 10:15:33 +0200
parents 0540b54324f1
children 4f78da5613a1 bdbe12aba99f
comparison
equal deleted inserted replaced
3798:c38b82bb6fd3 3799:320a2d224902
203 **/ 203 **/
204 // "vitrea" : [ "VITREA", "192.168.1.1", 104, "Vitrea" ] 204 // "vitrea" : [ "VITREA", "192.168.1.1", 104, "Vitrea" ]
205 205
206 /** 206 /**
207 * By default, the Orthanc SCP accepts all DICOM commands (C-ECHO, 207 * By default, the Orthanc SCP accepts all DICOM commands (C-ECHO,
208 * C-STORE, C-FIND, C-MOVE) issued by the registered remote SCU 208 * C-STORE, C-FIND, C-MOVE, and storage commitment) issued by the
209 * modalities. Starting with Orthanc 1.5.0, it is possible to 209 * registered remote SCU modalities. Starting with Orthanc 1.5.0,
210 * specify which DICOM commands are allowed, separately for each 210 * it is possible to specify which DICOM commands are allowed,
211 * remote modality, using the syntax below. The "AllowEcho" (resp. 211 * separately for each remote modality, using the syntax
212 * "AllowStore") option only has an effect respectively if global 212 * below. The "AllowEcho" (resp. "AllowStore") option only has an
213 * option "DicomAlwaysAllowEcho" (resp. "DicomAlwaysAllowStore") 213 * effect respectively if global option "DicomAlwaysAllowEcho"
214 * is set to false. 214 * (resp. "DicomAlwaysAllowStore") is set to false.
215 **/ 215 **/
216 //"untrusted" : { 216 //"untrusted" : {
217 // "AET" : "ORTHANC", 217 // "AET" : "ORTHANC",
218 // "Port" : 104, 218 // "Port" : 104,
219 // "Host" : "127.0.0.1", 219 // "Host" : "127.0.0.1",
220 // "Manufacturer" : "Generic", 220 // "Manufacturer" : "Generic",
221 // "AllowEcho" : false, 221 // "AllowEcho" : false,
222 // "AllowFind" : false, 222 // "AllowFind" : false,
223 // "AllowMove" : false, 223 // "AllowMove" : false,
224 // "AllowStore" : true 224 // "AllowStore" : true,
225 // "AllowStorageCommitment" : false // new in 1.6.0
225 //} 226 //}
226 }, 227 },
227 228
228 // Whether to store the DICOM modalities in the Orthanc database 229 // Whether to store the DICOM modalities in the Orthanc database
229 // instead of in this configuration file (new in Orthanc 1.5.0) 230 // instead of in this configuration file (new in Orthanc 1.5.0)
525 "HttpRequestTimeout" : 30, 526 "HttpRequestTimeout" : 30,
526 527
527 // Set the default private creator that is used by Orthanc when it 528 // Set the default private creator that is used by Orthanc when it
528 // looks for a private tag in its dictionary (cf. "Dictionary" 529 // looks for a private tag in its dictionary (cf. "Dictionary"
529 // option), or when it creates/modifies a DICOM file (new in Orthanc 1.6.0). 530 // option), or when it creates/modifies a DICOM file (new in Orthanc 1.6.0).
530 "DefaultPrivateCreator" : "" 531 "DefaultPrivateCreator" : "",
532
533 // Maximum number of storage commitment reports (i.e. received from
534 // remote modalities) to be kept in memory (new in Orthanc 1.6.0).
535 "StorageCommitmentReportsSize" : 100
531 } 536 }