-1
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 响应:无法理解”的响应。

谁知道我的要求是错误的?
或者谁知道为什么服务器返回“无法理解”?
我无权访问“被调用”服务器日志。

我很抱歉我的英语。

4

1 回答 1

1

您可能没有发送查询/检索级别 (0008, 0052) 属性或没有使用正确的值填充它。尝试添加查询/检索级别属性并使用字符串“STUDY”填充它并发送 C-MOVE。

于 2015-08-12T16:24:05.697 回答