2016-09-08 2 views
0

DICOM 파일을 DicomProxy로 보내려고합니다. DicomProxy는 파일과 출력을 다른 서버로 변환하기위한 것입니다. 그러나 다음 명령을 실행할 때 :DCM4CHE 3.3.7 파일 보내기 오류

bin/storescu -c [email protected]: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) 

파일이 전송되지 않는 이유를 아는 사람이 있습니까?

감사합니다.

답변

0

좋아요. 문제를 해결 한 결과, storescu 구문이 잘못되었습니다. 그것과 같이해야합니다 : -c 대상을 나타내고 -b는 양상을 나타냅니다

bin/storescu -c [email protected]:XXXX -b AET:PORT ../example/XXXXXX.dcm

합니다.