(0000,1030) Move originator application entity title

Hello,

I have a question about (0000,1030) Move originator application entity title in C-STORE-RQ messages sent by Orthanc (version 1.1.0) as response on a C-MOVE-RQ. In the DICOM standard this is described as:

Contains the DICOM AE Title of the DICOM AE that invoked the C-MOVE operation from which this C-STORE sub-operation is being performed.

According to this I think that the value should be the application entity title of the sender of the C-MOVE-RQ but Orthanc sets this value to "ORTHANC" which is the application entity title of the originator of the C-STORE but not of the C-MOVE. Also Orthanc does not set (0000,1031) Move Originator Message ID which should be set to the Message ID of the C-MOVE-RQ message.

Regards,
Adam

Dear Adam,

Thanks for reporting this issue! It is now fixed in the mainline:
https://bitbucket.org/sjodogne/orthanc/commits/21713ce8717bfbfd45d107a25bd7c06c700b90ba

For instance, if Orthanc is configured as follows:

{
[…]
“DicomModalities” : {

“sample” : [ “STORESCP”, “127.0.0.1”, 2000 ],
“move” : [ “MOVESCU”, “localhost”, 2001 ]

}
}

And if the low-level “storescp” server from DCMTK is started as follows:

storescp -d 2000

Running the following “movescu” command:

movescu localhost 4242 --aetitle MOVESCU --call ORTHANC --move STORESCP -k 0008,0052=INSTANCE -k SOPInstanceUID=1.3.12.2.1107.5.2.33.37097.2012041612485519732869684 -k 0000,0110=4

Will work as expected in the “storescp” logs:

D: ===================== INCOMING DIMSE MESSAGE ====================
D: Message Type : C-STORE RQ
D: Presentation Context ID : 85
D: Message ID : 1
D: Affected SOP Class UID : MRImageStorage
D: Affected SOP Instance UID : 1.3.12.2.1107.5.2.33.37097.2012041612485519732869684
D: Data Set : present
D: Priority : medium
D: Move Originator AE Title : MOVESCU
D: Move Originator ID : 4
D: ======================= END DIMSE MESSAGE =======================

Whereas Orthanc 1.1.0 would have lead to the following incorrect answer:

D: Move Originator AE Title : ORTHANC

D: Move Originator ID : 1

Regards,
Sébastien-