comparison OrthancServer/Resources/Configuration.json @ 4465:fe774d8e904b

New configuration option: "DicomScuPreferredTransferSyntax" to control transcoding in C-STORE SCU
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 21 Jan 2021 17:08:32 +0100
parents 522e13a60cfc
children f8c1d94363b6
comparison
equal deleted inserted replaced
4464:e8c7be7a02a9 4465:fe774d8e904b
365 // The timeout (in seconds) after which the DICOM associations are 365 // The timeout (in seconds) after which the DICOM associations are
366 // considered as closed by the Orthanc SCU (client) if the remote 366 // considered as closed by the Orthanc SCU (client) if the remote
367 // DICOM SCP (server) does not answer. 367 // DICOM SCP (server) does not answer.
368 "DicomScuTimeout" : 10, 368 "DicomScuTimeout" : 10,
369 369
370 // During a C-STORE SCU request initiated by Orthanc, if the remote
371 // modality doesn't support the original transfer syntax of some
372 // DICOM instance, specify which transfer syntax should be preferred
373 // to transcode this instance (provided the remote modality accepts
374 // this syntax). In Orthanc between 1.7.0 and 1.8.2, this parameter
375 // was implicitly set to "Little Endian Implicit"
376 // (1.2.840.10008.1.2). In Orthanc <= 1.6.1 and in Orthanc >= 1.9.0,
377 // this parameter is by default set to "Little Endian Explicit"
378 // (1.2.840.10008.1.2.1). This parameter can possibly correspond to
379 // a compressed transfer syntax. (new in Orthanc 1.9.0)
380 "DicomScuPreferredTransferSyntax" : "1.2.840.10008.1.2.1",
381
370 // The list of the known Orthanc peers. This option is ignored if 382 // The list of the known Orthanc peers. This option is ignored if
371 // "OrthancPeersInDatabase" is set to "true", in which case you must 383 // "OrthancPeersInDatabase" is set to "true", in which case you must
372 // use the REST API to define Orthanc peers. 384 // use the REST API to define Orthanc peers.
373 "OrthancPeers" : { 385 "OrthancPeers" : {
374 /** 386 /**