FO-DICOM C-MOVE 响应:"Cannot understand"

FO-DICOM C-MOVE response: "Cannot understand"

var cmove = new DicomCMoveRequest(AEServer, studyUID); // AEServer is my server name which listening for a C-STORE request.

var client = new DicomClient();
client.AddRequest(cmove);
client.Send(ip, port, false, AEClient, serverName);  // AEClient is a clinent name.

当我尝试向另一个服务器发送 C-MOVE 请求时,服务器正在向我发送这样的响应 "C-MOVE response: Cannot understand".

谁知道我的要求错了?
或者谁知道为什么服务器返回 "Cannot understand"?
我无权访问 "called" 服务器日志。

对不起我的英语。

您可能没有发送 Query/Retrieve 级别 (0008, 0052) 属性或未为其填充正确的值。尝试添加 Query/Retrieve Level 属性并用字符串 "STUDY" 填充它并发送 C-MOVE。