comparison Resources/Configuration.json @ 3920:82e88ff003d7 c-get

merge default -> c-get
author Alain Mazy <alain@mazy.be>
date Tue, 12 May 2020 14:58:24 +0200
parents dba48c162b7b 0ef7f4528be2
children 596912ebab5f
comparison
equal deleted inserted replaced
3918:dba48c162b7b 3920:82e88ff003d7
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, C-GET and storage commitment) issued by the 208 * 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, 209 * registered remote SCU modalities. Starting with Orthanc 1.5.0,
210 * it is possible to specify which DICOM commands are allowed, 210 * it is possible to specify which DICOM commands are allowed,
211 * separately for each remote modality, using the syntax 211 * separately for each remote modality, using the syntax
212 * below. The "AllowEcho" (resp. "AllowStore") option only has an 212 * below.
213 * effect respectively if global option "DicomAlwaysAllowEcho" 213 *
214 * (resp. "DicomAlwaysAllowStore") is set to false. 214 * The "AllowEcho" (resp. "AllowStore") option only has an effect
215 * respectively if global option "DicomAlwaysAllowEcho"
216 * (resp. "DicomAlwaysAllowStore") is set to "false".
217 *
218 * Starting with Orthanc 1.7.0, "AllowTranscoding" can be used to
219 * disable the transcoding to uncompressed transfer syntaxes if
220 * the remote modality doesn't support compressed transfer
221 * syntaxes. This option only has an effect if global option
222 * "EnableTranscoding" is set to "true".
215 **/ 223 **/
216 //"untrusted" : { 224 //"untrusted" : {
217 // "AET" : "ORTHANC", 225 // "AET" : "ORTHANC",
218 // "Port" : 104, 226 // "Port" : 104,
219 // "Host" : "127.0.0.1", 227 // "Host" : "127.0.0.1",
221 // "AllowEcho" : false, 229 // "AllowEcho" : false,
222 // "AllowFind" : false, 230 // "AllowFind" : false,
223 // "AllowGet" : false, 231 // "AllowGet" : false,
224 // "AllowMove" : false, 232 // "AllowMove" : false,
225 // "AllowStore" : true, 233 // "AllowStore" : true,
226 // "AllowStorageCommitment" : false // new in 1.6.0 234 // "AllowStorageCommitment" : false, // new in 1.6.0
235 // "AllowTranscoding" : true // new in 1.7.0
227 //} 236 //}
228 }, 237 },
229 238
230 // Whether to store the DICOM modalities in the Orthanc database 239 // Whether to store the DICOM modalities in the Orthanc database
231 // instead of in this configuration file (new in Orthanc 1.5.0) 240 // instead of in this configuration file (new in Orthanc 1.5.0)
531 // option), or when it creates/modifies a DICOM file (new in Orthanc 1.6.0). 540 // option), or when it creates/modifies a DICOM file (new in Orthanc 1.6.0).
532 "DefaultPrivateCreator" : "", 541 "DefaultPrivateCreator" : "",
533 542
534 // Maximum number of storage commitment reports (i.e. received from 543 // Maximum number of storage commitment reports (i.e. received from
535 // remote modalities) to be kept in memory (new in Orthanc 1.6.0). 544 // remote modalities) to be kept in memory (new in Orthanc 1.6.0).
536 "StorageCommitmentReportsSize" : 100 545 "StorageCommitmentReportsSize" : 100,
546
547 // Whether Orthanc transcodes DICOM files to an uncompressed
548 // transfer syntax over the DICOM protocol, if the remote modality
549 // does not support compressed transfer syntaxes (new in Orthanc 1.7.0).
550 "TranscodeDicomProtocol" : true
537 } 551 }