comparison Resources/Configuration.json @ 2352:3ab96768d144

Fix issue #52 (DICOM level security association problems)
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 18 Jul 2017 17:33:26 +0200
parents dd26536454a0
children 3ec85ff48374
comparison
equal deleted inserted replaced
2351:56504f89d4ac 2352:3ab96768d144
80 "DicomServerEnabled" : true, 80 "DicomServerEnabled" : true,
81 81
82 // The DICOM Application Entity Title 82 // The DICOM Application Entity Title
83 "DicomAet" : "ORTHANC", 83 "DicomAet" : "ORTHANC",
84 84
85 // Check whether the called AET corresponds during a DICOM request 85 // Check whether the called AET corresponds to the AET of Orthanc
86 // during an incoming DICOM SCU request
86 "DicomCheckCalledAet" : false, 87 "DicomCheckCalledAet" : false,
87 88
88 // The DICOM port 89 // The DICOM port
89 "DicomPort" : 4242, 90 "DicomPort" : 4242,
90 91
154 * command line "storescp 2000". 155 * command line "storescp 2000".
155 **/ 156 **/
156 // "sample" : [ "STORESCP", "127.0.0.1", 2000 ] 157 // "sample" : [ "STORESCP", "127.0.0.1", 2000 ]
157 158
158 /** 159 /**
159 * A fourth parameter is available to enable patches for a 160 * A fourth parameter is available to enable patches for
160 * specific PACS manufacturer. The allowed values are currently 161 * specific PACS manufacturers. The allowed values are currently:
161 * "Generic" (default value), 162 * - "Generic" (default value),
162 * "GenericNoWildcardInDates" (to replace '*' by '' in date fields in outgoing C-Find) 163 * - "GenericNoWildcardInDates" (to replace "*" by "" in date fields
163 * "GenericNoWildcards" (to replace '*' by '' in all fields in outgoing C-Find) 164 * in outgoing C-Find requests originating from Orthanc)
164 * "StoreScp" (storescp tool from DCMTK), 165 * - "GenericNoUniversalWildcard" (to replace "*" by "" in all fields
165 * "ClearCanvas", "Dcm4Chee" and "Vitrea". 166 * in outgoing C-Find SCU requests originating from Orthanc)
167 * - "StoreScp" (storescp tool from DCMTK),
168 * - "ClearCanvas", "Dcm4Chee" and "Vitrea".
166 * This parameter is case-sensitive. 169 * This parameter is case-sensitive.
167 **/ 170 **/
168 // "clearcanvas" : [ "CLEARCANVAS", "192.168.1.1", 104, "ClearCanvas" ] 171 // "clearcanvas" : [ "CLEARCANVAS", "192.168.1.1", 104, "ClearCanvas" ]
169 }, 172 },
173
174 // Whether the Orthanc SCP allows incoming C-Store requests, even
175 // from SCU modalities it does not know about (i.e. that are not
176 // listed in the "DicomModalities" option above)
177 "DicomAlwaysAllowStore" : true,
178
179 // Whether Orthanc checks the IP/hostname address of the remote
180 // modality initiating a DICOM connection (as listed in the
181 // "DicomModalities" option above). If this option is set to
182 // "false", Orthanc only checks the AET of the remote modality.
183 "DicomCheckModalityHost" : false,
170 184
171 // The timeout (in seconds) after which the DICOM associations are 185 // The timeout (in seconds) after which the DICOM associations are
172 // considered as closed by the Orthanc SCU (client) if the remote 186 // considered as closed by the Orthanc SCU (client) if the remote
173 // DICOM SCP (server) does not answer. 187 // DICOM SCP (server) does not answer.
174 "DicomScuTimeout" : 10, 188 "DicomScuTimeout" : 10,