IHE给出了各个Actor之间如何通讯的建议:

1.       应用程序通讯时必须用MLLP包装或者解析。

2.       客户端建立连接后,服务器端必须用此连接进行应答。客户端可以继续用此连接启动新事务

原文如下:

1.      Applications shall use the Minimal Lower Layer Protocol defined in Appendix C of the

HL7 Implementation Guide.

2.      An initiating application that wants to send a message (initiate a transaction) will

initiate a network connection to start the transaction. The receiver application will

respond with an acknowledgement or response to query over the open connection. The

initiating application can initiate a new transaction on the same connection. However,

the initiating application must be able to handle cases where the connection has been

closed due to possible timeout by the accepting application. For example if the

initiating application does not submit a request over the connection in a timely manner,

the accepting application has the right to close the connection. When this condition is

detected, the initiating application needs to open a new connection for subsequent

requests.

在实现消息解析时, 请参考IHE_ITI_TF_Rev8-0_Vol2a_FT_2011-08-19 的3.8, 3.9,3.10 以及IHE_ITI_TF_Rev8-0_Vol2x_FT_2011-08-19的 Appendix C
有必选 Segment,以及每个Segment 必选element, 其中
R Required
R2 This is an IHE extension. If the sending application has data for the field, it is required to populate the field. If the value is not known, the field may not be sent.
R+ This is an IHE extension. This is a field that IHE requires that was listed as optional within the HL7 standard.
O Optional
C Conditional
总共是 8个必选Segment , 但是对于具体事务有些 Segment可以不关心,比如Feed不太关心 PV1.

[...] 表示“可选”

{…}表示“可重复”

[{…}] 表示“可选,且可重复”


PIX总共包括3个事务:Feed,Query,Update,HL7版本分别为v2.3.1, V2.5, v2.5.
Feed包括:A01,A04,A05,A08。MessageType为ADT,A01-A08, ADT_A01. 以及A40,MessageType为ADT,A40, ADT_A39
Query包括:Q23,K23
Update: A31

在PIX中需要对域进行配置, 有几个概念需要澄清。
病人标识源: 就是ADT消息的SendingApplication字段。
病人标识域:
病人交叉索引域: 

IHE-PIX 备注的更多相关文章

  1. IHE PIX规范

    IHE(Integrating Healthcare Enterprise) 集成医疗企业 IHE概念是由医学专家和广大医护工作者.相关政府部门.信息技术专家和企业共同发起的,目的是提供一种更好的方法 ...

  2. HL7及PIX相关的测试工具

    最近在开发PIX项目时需要一些工具, 比如PIX各个Actor的测试工具, HL7消息的验证工具等等. 下面列下我找见的几个 必备工具. 1. http://hit-testing.nist.gov: ...

  3. HL7 标准及实现指南 必看的网址

    V2: http://hl7book.net/index.php?title=HL7_version_2 包括HL7 的介绍,主要章节,每个版本的变化, 各种语言实现的HL7库,免费HL7工具, 最新 ...

  4. hl7 v2.X 版本中RSP_K23消息的构造

    RSP_K23消息有MSH, MSA, ERR, QAK, QPD, PID几个segment,其中ERR,PID为可选. 1. 当MSA有err时,ERR段填充出错的详细信息. 2. 当MSA为AA ...

  5. hl7中V2版本的ACK消息的构造

    hl7 v2的ack消息即应答消息构造时有几个注意的地方. 首先,我们看下2个ack的例子: Send: MSH|^~\&|NIST_SENDER^^|NIST^^|NIST_RECEIVER ...

  6. HL7 ADT Message Sample

    http://pixpdqtests.nist.gov:8080/#tests%2Fdriver%2Fversion.htm 可以打开上述连接, 选中version和actor, 然后获取对于samp ...

  7. 实现PIX需要参考的标准资料

    •初步了解PIX V2和V3:"IHE_ITI_TF_Rev8-0_Vol1_FT_2011-08-19"中第5章和第23章 •了解PIX V2相关事务: "IHE_IT ...

  8. DBCP 配置备注

    <property name="initialSize" value="5"></property> <property name ...

  9. JNI 备注

    本文记录一个基础的JNI例子及过程中遇到的问题解决. 1.定义一个JAVA类如下: package jnidemo01; public class JniHello { public native v ...

随机推荐

  1. java中BigDecimal的学习

    干着java的活,但是看的都是一些偏底层的东西(或者我根本就没有看),有点荒废了java的学习. 最近一直在用到一个类是BigDecimal,但都是模棱两可地在那儿用,并没有深入研究这个类的细节,感觉 ...

  2. HUAWEI HiAI亮相华为开发者生态大会 助力应用AI开发实现加速度

    6月23日,在2018华为终端·全球合作伙伴及开发者大会AI分论坛体验区的一角,被层层叠叠的人群围得水泄不通.站在最前面的一名体验者,正跟随着“快手短视频”APP上不断出现的小人左右扭动,每完成一个动 ...

  3. nginx支持pathinfo模式

    很久不使用apache了,渐渐对apache感到陌生,因为朋友有个ZendFramework框架从apache移到nginx下,需要pathinfo模式支持.网上海搜于是开始搜索nginx+pathi ...

  4. Linux 批量替换的一种实现方式

    替换某目录下所有文件中的某个字符: sed -i 's/origin_str/new_str/g' `grep origin_str -rl ./` origin_str:被替换的字符串: new_s ...

  5. 基于Apache POI 从xlsx读出数据

    [0]写在前面 0.1) these codes are from 基于Apache POI 的从xlsx读出数据 0.2) this idea is from http://cwind.iteye. ...

  6. CountDownTimer

    package com.daoge.widget; import java.text.DecimalFormat; import android.os.CountDownTimer; import a ...

  7. POJ 3895 Cycles of Lanes (dfs)

    Description Each of the M lanes of the Park of Polytechnic University of Bucharest connects two of t ...

  8. 4276: [ONTAK2015]Bajtman i Okrągły Robin

    4276: [ONTAK2015]Bajtman i Okrągły Robin Time Limit: 40 Sec  Memory Limit: 256 MBSubmit: 345  Solved ...

  9. 基于EasyNVR二次开发实现自己的摄像机IPC/NVR无插件化直播解决方案

    在之前的博客中<基于EasyNVR实现RTSP/Onvif监控摄像头Web无插件化直播监控>,我们已经比较多的描述EasyNVR所实现的功能,这些也在方案地址:http://www.eas ...

  10. jquery Jsonp的使用

    <script type="text/javascript"> $(function(){ $.ajax({ url:"test", jsonpCa ...