超时等待对具有控件ID的消息的响应

时间:2017-11-15 17:32:17

标签: jms hl7-v2

我正在使用HL7协议进行健康护理。在这个过程中,我们使用MLLP向localhost:50005发送HL7消息。这是我用来通过MLLP发送消息的代码。

//sending message through mllp
                    PipeParser pipeParser = new PipeParser();
                    pipeParser.setValidationContext(new NoValidation());
                    System.out.println(hl7message);
                    Message message1 = pipeParser.parse(hl7message);
                    ConnectionHub connectionHub =  ConnectionHub.getInstance();
                    Connection conn = null;
                    if (conn == null) {
                        conn = connectionHub.attach(ehrHost, ehrPort, new PipeParser(), MinLowerLayerProtocol.class);
                    }
                    Message response;
                    try {
                        int timeout = 150000;
//                      System.setProperty("ca.uhn.hl7v2.app.initiator.timeout",  Integer.toString(timeout));
                        Initiator init = conn.getInitiator();
                        init.setTimeoutMillis(timeout);
                        response = init.sendAndReceive(message1);
                    } catch (Exception e) {
                        System.out.println("Didn't send out this message!");
                        e.printStackTrace();
        }

此代码正常工作并按预期将请求发送到HL7 Soup UI,因为我们已经设置了一个正在端口50005上侦听localhost的HL7 Soup UI实例。 我们还设置了HL7汤,以便在收到消息后立即发送响应。但在代码中我们无法得到响应。我们得到以下例外:

ca.uhn.hl7v2.HL7Exception: Timeout waiting for response to message with control ID 20171115-000009
 After Exceuter..................................
    at ca.uhn.hl7v2.app.Initiator.sendAndReceive(Initiator.java:152)
    at com.prnreferral.outbound.MLLPOutboundServiceMain$1.run(MLLPOutboundServiceMain.java:173)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
    at java.lang.Thread.run(Thread.java:745)

我做了一些R& D并找到了一个链接:https://sourceforge.net/p/hl7api/mailman/message/18425561/并且我添加了超时代码以设置一些超时,以便它获得一些额外的响应时间但仍然得到相同的错误。

有人对此有所了解,提前谢谢。

0 个答案:

没有答案