DCM4CHE 3.3.7 发送文件错误
DCM4CHE 3.3.7 Send file error
我正在尝试将 DICOM 文件发送到 DicomProxy,这意味着转换文件并输出到另一台服务器。但是当执行以下命令时:
bin/storescu -c DICOMPROXY@XX.XXX.XXX.XX:XXXX ../example/XXXXXX.dcm
在终端中,出现以下消息。
Connected to DICOMPROXY in 35ms
org.dcm4che3.net.NoPresentationContextException: No Presentation Context for Abstract Syntax: 1.2.840.10008.5.1.4.1.1.2 - CT Image Storage negotiated
at org.dcm4che3.net.Association.pcFor(Association.java:795)
at org.dcm4che3.net.Association.cstore(Association.java:829)
at org.dcm4che3.net.Association.cstore(Association.java:823)
at org.dcm4che3.tool.storescu.StoreSCU.send(StoreSCU.java:483)
at org.dcm4che3.tool.storescu.StoreSCU.sendFiles(StoreSCU.java:387)
at org.dcm4che3.tool.storescu.StoreSCU.main(StoreSCU.java:296)
09:49:20,037 INFO - STORESCU->DICOMPROXY(1) << A-RELEASE-RQ
09:49:20,037 DEBUG - STORESCU->DICOMPROXY(1): enter state: Sta7 - Awaiting A-RELEASE-RP PDU
09:49:20,038 INFO - STORESCU->DICOMPROXY(1) >> A-RELEASE-RP
09:49:20,039 INFO - STORESCU->DICOMPROXY(1): close Socket[addr=/XX.XXX.XXX.XX,port=XXXX,localport=50596]
09:49:20,039 DEBUG - STORESCU->DICOMPROXY(1): enter state: Sta1 - Idle
Sent 0 objects (=0MB) in 0.022s (=0MB/s)
有谁知道文件发送不出去的原因吗?
谢谢。
好的,我解决了这个问题,我错误地使用了 storescu 的语法。应该是这样的:
bin/storescu -c DICOMPROXY@XX.XXX.XXX.XX:XXXX -b AET:PORT ../example/XXXXXX.dcm
其中 -c 代表目的地,-b 代表方式。
我正在尝试将 DICOM 文件发送到 DicomProxy,这意味着转换文件并输出到另一台服务器。但是当执行以下命令时:
bin/storescu -c DICOMPROXY@XX.XXX.XXX.XX:XXXX ../example/XXXXXX.dcm
在终端中,出现以下消息。
Connected to DICOMPROXY in 35ms
org.dcm4che3.net.NoPresentationContextException: No Presentation Context for Abstract Syntax: 1.2.840.10008.5.1.4.1.1.2 - CT Image Storage negotiated
at org.dcm4che3.net.Association.pcFor(Association.java:795)
at org.dcm4che3.net.Association.cstore(Association.java:829)
at org.dcm4che3.net.Association.cstore(Association.java:823)
at org.dcm4che3.tool.storescu.StoreSCU.send(StoreSCU.java:483)
at org.dcm4che3.tool.storescu.StoreSCU.sendFiles(StoreSCU.java:387)
at org.dcm4che3.tool.storescu.StoreSCU.main(StoreSCU.java:296)
09:49:20,037 INFO - STORESCU->DICOMPROXY(1) << A-RELEASE-RQ
09:49:20,037 DEBUG - STORESCU->DICOMPROXY(1): enter state: Sta7 - Awaiting A-RELEASE-RP PDU
09:49:20,038 INFO - STORESCU->DICOMPROXY(1) >> A-RELEASE-RP
09:49:20,039 INFO - STORESCU->DICOMPROXY(1): close Socket[addr=/XX.XXX.XXX.XX,port=XXXX,localport=50596]
09:49:20,039 DEBUG - STORESCU->DICOMPROXY(1): enter state: Sta1 - Idle
Sent 0 objects (=0MB) in 0.022s (=0MB/s)
有谁知道文件发送不出去的原因吗?
谢谢。
好的,我解决了这个问题,我错误地使用了 storescu 的语法。应该是这样的:
bin/storescu -c DICOMPROXY@XX.XXX.XXX.XX:XXXX -b AET:PORT ../example/XXXXXX.dcm
其中 -c 代表目的地,-b 代表方式。