Hey,
Currently, it seems that a DicomMoveScu Job does not contain information indicating what it refers to (i.e. On what level does the C-Move occur? What Orthanc Identifier is it referring to?).
Is it possible to get this information somehow through the job API?
Many thanks!
jodogne
February 24, 2019, 9:06am
2
Hello,
This is now implemented by the following changeset that is pending in the mainline, and that will be part of forthcoming Orthanc 1.5.5:
https://bitbucket.org/sjodogne/orthanc/commits/a215182a0c2ff72d9e3a9e8dbfa7f246f4dffaf0
For instance:
$ curl http://localhost:8042/jobs/f0d05f32-13ff-48ca-935d-da57f14940ec
{
“CompletionTime” : “20190224T090113.039519”,
“Content” : {
“Description” : “REST API”,
“LocalAet” : “ORTHANC”,
“Query” : [
{
“0008,0050” : “A10003245599”,
“0008,0052” : “SERIES”,
“0010,0020” : “887”,
“0020,000d” : “2.16.840.1.113669.632.20.121711.10000160881”,
“0020,000e” : “1.3.46.670589.11.17521.5.0.3124.2008081909090037350”
}
],
“RemoteAet” : “ORTHANCTEST”
},
“CreationTime” : “20190224T090112.960894”,
“EffectiveRuntime” : 0.078,
“ErrorCode” : 0,
“ErrorDescription” : “Success”,
“ID” : “f0d05f32-13ff-48ca-935d-da57f14940ec”,
“Priority” : 0,
“Progress” : 100,
“State” : “Success”,
“Timestamp” : “20190224T090600.953478”,
“Type” : “DicomMoveScu”
}
Sébastien-