Hi,
Is it possible for testing purposes to disable for instance the common transfer syntaxes like 1.2.840.10008.1.2 Implicit VR Endian ?? I tried adding only other syntaxes to “AcceptedTransferSyntaxes” in the config json file to no avail - it still accepts for Implicit VR Endian without problems. Thanks in advance for your help! Regards Henrik
Hi @henrik2024
I have just tried with this dcmtk command
storescu -d -xi localhost 4243 little-implicit.dcm
and with
“AcceptedTransferSyntaxes” : [
“1.2.840.10008.1.2.1”
]
And the association failed.
Note that -xi
is important in storescu
to prevent storescu to transcode before sending.
HTH,
Alain
Thank you very much