How do we add DICOMWeb Server in Orthanc.jason file

How do we add DICOMWeb Server in Orthanc.jason file

Hi Yogesh,

Seems like you just have been joining this community for the first time, so just a gentle remind that “A warm greating” (by saying Hi or Hello) is necessary to show your respect to creators of Orthanc Community (Sebastien Jodogne and Alain Mazy). To your question, you might find clear information of DicomWeb in this book : DICOMweb plugin — Orthanc Book documentation . For example adding this configuration to Orthanc.json

{
  [...]
  "DicomWeb" : {
    "Servers" : {
      "sample" : {
        "Url" : "http://192.168.1.1/dicom-web/",
        "Pkcs11" : true
      }
    }
  }
}

“sample” is a remote DicomWeb server which Orthanc can interact with.

1 Like