Hey there,
I'm trying to c-move one specific dicom structured report (and not the entire study) from our pacs using dcm4che toolkit v5.22.6. Actually I just want to receive one private tag from this dicom SR.
I configured AET, IP and port in the pacs, opened a storeSCP and used moveSCU to move the file using this command with series level:
./movescu -c SOM...@123.456.7.8:1234 -m StudyInstanceUID=1.2.3 -m SeriesInstanceUID=1.2.3.4 -L SERIES --dest STORESCP
storeSCP:
./storescp -b STOR...@123.456.7.8:5678 --accept-unknown --directory someDirectory
I'm actually receiving a dicom file which can't be opened with a dicom viewer (weasis), while the original file can be opened. When I replace the storescp with dcmtk
(dcmtk storescp) it works fine (still using dcm4chee for c-move). As I'm planning to do some modifications I would prefer using dcm4chee.
I have following questions:
- How to achieve this by using dcm4chee-toolkit's storescp?
- Is there an easier way to query one specific private tag?
Best regards
Timo