1

I create using Mirth a channel that receives CDA messages in HL7V3 format. I'm able to parse the message and extract all the data i need. My question is: How do i create an acknowledgement to the receiver? I found out that there is a message called MCCI_MT000200UV01 that i need to implement but i can't find good explanation and/or examples.

I have been working a long time with HL7V2 and the acknowledgement is very simple. Can't find a way to implement this in HL7V3 format.

Thanks in advance for your help

4

1 回答 1

2

我猜你说的是一个通用的接受确认消息,它是 MCCI_IN000002UV02(根据 HL7v3 NE2014)。如果我是你,首先我会下载与用于传输 CDA 文档的入站消息的年份相匹配的 HL7v3 规范版(除非它是 HL7v2)。然后我会去 HL7v3NE > Specification Infrastructure > Messaging > Transmission Infrastructure > Generic Message Transmission 并找到 Accept Ack 交互。有一个相关的 XML Schema 允许您为 v3 ACK 构建 XML 模板(默认情况下,类似 XMLSpy 的工具会这样做)。

由于 ACKGenerator 不支持 HL7v3,下一步是创建一个代码模板函数,该函数从您从上一步中获取的模板构建 v3 ACK。

(PS。带有示例的整个过程在 mirthconnect.shamilpublishing.com 上提供的“非官方 Mirth Connect 开发人员指南”中进行了解释)

于 2015-02-12T00:43:54.977 回答