DICOM Q/R question

As It is specified in the Orthanc Book, the C-Move Q/R is a more generic protocol that can involve up to 3 distinct imaging devices.

Can someone give me an example of what should be the configuration parameters in a setting that use 3 distinct imaging devices as illustrated in the book section: C-Move: Query/retrieve.

Thanks

Hello,

Here is a sample, minimal configuration of Orthanc for the hypothetical topology of the 3 imaging devices depicted on the following section of the Orthanc Book:
https://book.orthanc-server.com/dicom-guide.html#dicom-move

Issuer modality (192.168.35.64):

{
“DicomAet” : “ISSUER”,
“DicomPort” : 104,
“DicomModalities” : {
“source” : [ “SOURCE”, “192.168.34.12”, 104 ]
}
}

Source modality (192.168.34.12):

{
“DicomAet” : “SOURCE”,
“DicomPort” : 104,
“DicomModalities” : {
“issuer” : [ “ISSUER”, “192.168.35.64”, 104 ],
“target” : [ “TARGET”, “192.168.74.34”, 104 ]
}
}

Target modality (192.168.74.34):

{
“DicomAet” : “TARGET”,
“DicomPort” : 104,
“DicomModalities” : {
“source” : [ “SOURCE”, “192.168.34.12”, 104 ]
}
}

HTH,
Sébastien-