Mercurial > hg > orthanc-book
changeset 603:60c787d3f4d3
DICOMweb: ServersInDatabase option
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 22 Jan 2021 14:37:10 +0100 |
parents | 6e7d3f20227b |
children | eb60d014765b |
files | Sphinx/source/plugins/dicomweb.rst |
diffstat | 1 files changed, 19 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/Sphinx/source/plugins/dicomweb.rst Fri Jan 22 14:24:20 2021 +0100 +++ b/Sphinx/source/plugins/dicomweb.rst Fri Jan 22 14:37:10 2021 +0100 @@ -369,6 +369,24 @@ } } +Starting with release 1.5 of the DICOMweb plugin, the configuration +option ``ServersInDatabase`` can be set to ``true`` in order for the +plugin to **read/write the definitions of the DICOMweb servers +from/into the database of Orthanc**. This makes the modifications to +the DICOMweb servers persistent across successive executions of +Orthanc. If this option is enabled, the REST API must be used on URI +``/dicom-web/servers/`` (with the GET, DELETE or PUT methods) to +:ref:`add/update/remove DICOMweb servers +<dicomweb-additional-samples>`. Here is the syntax to enable this +feature:: + + { + [...] + "DicomWeb" : { + "ServersInDatabase" : true // "false" by default + } + } + **Remark:** A :ref:`plugin by Osimis <google>` is available to dynamically create authenticated connections to Google Cloud Platform. @@ -645,6 +663,7 @@ asynchronously run the request. +.. _dicomweb-additional-samples: Additional samples ------------------