# HG changeset patch # User Sebastien Jodogne # Date 1461574086 -7200 # Node ID 485504440bea60c4b830f8bdfc3cdf88f0dcb618 # Parent 3aca37cc50c93829f7af1b1f8a90836c8db0a90a Improved Does Orthanc support worklists? diff -r 3aca37cc50c9 -r 485504440bea Sphinx/source/faq/worklist.rst --- a/Sphinx/source/faq/worklist.rst Mon Apr 25 09:34:12 2016 +0200 +++ b/Sphinx/source/faq/worklist.rst Mon Apr 25 10:48:06 2016 +0200 @@ -1,15 +1,35 @@ Does Orthanc support worklists? -============================== +=============================== -Orthanc partially supports the Dicom Modality Worklists (MWL) through -one of his `plugin `__. +Orthanc supports DICOM Modality Worklists (MWL) through its `plugin +SDK +`__. +In other words, Orthanc can act as a worklist server (C-Find SCP), but +an user-defined plugin must be provided to answer a list of worklists +given a MWL query. -Thanks to this plugin, Orthanc can act as a worklist server (C-Find SCP) -and serve the worklists stored in a folder. +The rationale for using plugins instead of providing a built-in MWL +mechanism, is that the way worklists are generated is very specific to +the clinical flows and to the manufacturer of your `RIS system +`__. +Indeed, depending on the situation, worklists can be generated either +from HL7 messages, from calls to a Web service (e.g. through FHIR), or +from a direct access to some RIS database. It is thus up to the +Orthanc user to provide the worklist generator that is best suited for +her use. -However, Orthanc does not provide any functionality to generate the worklist files. -Usually, worklists are generated from HL7 messages or directly from a `RIS `__ -database. It's actually your responsibility to provide the worklist -generator. `dump2dcm `__ -might be very useful in this task. +A `sample plugin +`__ +is available to serve the worklists stored in some folder on the +filesystem. This mimics the behavior of the ``wlmscpfs`` command-line +tool from the `DCMTK software +`__. ``dump2dcm`` might +be a very `useful companion tool +`__ to feed the sample +plugin with worklists for some separate maintenance script. +For more complex or integrated workflows where you must implement a +custom MWL plugin, please check the `documentation of the part of the +Orthanc plugin SDK +`__ that is +related to the management of worklists.