Send to DICOMweb server - choose target is blank

Hi All
Im sure its a simple answer… Ive got Orthanc loaded on Ubuntu Server 20,04 and using RadiAnt viewer to see images (all is perfect).

When viewing a study via the web interface (eg below)
http://192.168.1.5:8042/app/explorer.html#study?uuid=149aca08-05b0f190-3f2b9aa8-644082d2-c208c9c5

if I press the Send to DICOMweb server button, there is a pop up for
choose target. however there are no targets listed in there despite being listed in orthanc.json config file under networks (eg below)

Your kind assistance is greatly appreciated.
Thanks

/**

  • Network topology
    **/

// The list of the known DICOM modalities
“DicomModalities” : {
/**

  • Uncommenting the following line would enable Orthanc to
  • connect to an instance of the “storescp” open-source DICOM
  • store (shipped in the DCMTK distribution) started by the
  • command line “storescp 2000”.
    **/
    // “sample” : [ “STORESCP”, “127.0.0.1”, 2000 ]
    “dvminsight” : [ “dvminsight”, “52.4.55.120”, 49108],

Hello,

The “DicomModalities” configuration option defines the remote modalities that must be accessed using the DICOM protocol.

The remote DICOMweb servers must be defined in the “DicomWeb.Servers” option:
https://book.orthanc-server.com/plugins/dicomweb.html#client-related-options

Sébastien-

Thanks Sébastien

Just to confirm below would be the correct syntax?

{
/**

  • The following options control the configuration of the Orthanc
  • plugin adding support of WADO and DICOMweb.
    **/

“DicomWeb” : {
“Enable” : true, // Whether DICOMweb support is enabled
“Root” : “/dicom-web/”, // Root URI of the DICOMweb API (for QIDO-RS, STOW-RS and WADO-RS)
“EnableWado” : true, // Whether WADO-URI (aka. WADO) support is enabled
“WadoRoot” : “/wado”, // Root URI of the WADO-URI (aka. WADO) API
“Host” : “localhost”, // Hard-codes the name of the host for subsequent WADO-RS requests
“Ssl” : false // Whether HTTPS should be used for subsequent WADO-RS requests
“Servers” : {
“sample” : [ “http://192.168.1.1/dicom-web/”, “username”, “password” ]
}
}
}

Hello,

This is indeed the correct syntax. Here is a minimal sample configuration with the optional items removed:

{
“Plugins” : [ “/path/to/the/folder/with/the/plugins/” ],
“DicomWeb” : {
“Servers” : {
“sample” : [ “http://192.168.1.1/dicom-web/”, “username”, “password” ]
}
}
}

Sébastien-