mirth

How can I use HTTP Sender to submit a client certificate without the SSL Manager Plugin?

非 Y 不嫁゛ 提交于 2019-12-24 11:28:17
问题 We have a Mirth server which is not under a support contract which needs to POST to a client-certificate authenticated HTTPs service. Since the certificate is self-signed, adding it to appdata\keystore.jks doesn't seem to work. How can I explicitly specify a client certificate for a HTTP Sender destination without forking over the big bucks? 回答1: Create an nginx reverse proxy. That way, Mirth only has to connect on HTTP - nginx submits the client certificate. For windows: Unzip nginx Update

How to change HTTP URL in FHIR Listener while using mirth connect?

北慕城南 提交于 2019-12-24 08:04:41
问题 I am trying to use the FHIR Listener extension in mirth connect. I want to use a sample FHIR server to test the process but i am not able to change the HTTP URL in FHIR Listener Settings . Is there any way I can change that? 回答1: We cannot change the URL of either HTTP url or FHIR listener url. It will always remain localhost. If you are trying read a sample data from the any test server try as below: Go to the HTTP sender select GET and paste the URL there test the connection. deploy the

Mirth Connect: javascript to call a webservice

僤鯓⒐⒋嵵緔 提交于 2019-12-22 15:37:09
问题 I'm trying to call a web service from a Mirth Channel transformer javascript using apache axis library (which it's supposed to be deployed with Mirth). I've tried using the following java script, but it does not work: /*importPackage(java.net); importPackage(org.apache.axis.client.Call); importPackage(org.apache.axis.client.Service); importPackage(javax.xml.namespace.QName);*/ var endpoint = 'http://tempuri.org/IService1/'; var service = org.apache.axis.client.Service(); var call = service

Adding Multiple NTE segments to HL7 message with Mirth

旧巷老猫 提交于 2019-12-22 08:46:07
问题 I am trying to add multiple NTE lines to the end of HL7 messages using Mirth. I can add a single line using for example: tmp=msg; msg['NTE']['NTE.1']="1".toString(); msg['NTE']['NTE.3']="Performed at 123 Radiology".toString(); But... When I want to add a line below that: msg['NTE']['NTE.1']="2".toString(); msg['NTE']['NTE.3']="123 Radiology Drive STE 100".toString(); I can't just use the tmp=msg because it will simply overwrite the previous line. In the end I am trying to add something like

What does msg mean in Mirth?

☆樱花仙子☆ 提交于 2019-12-22 04:08:20
问题 I'm trying to learn my way around some Mirth code. I keep seeing things like this in the transformer for different channels: msg['PRB']['PRB.4']['PRB.4.2'].toString() I understand that this is parsing a HL7 message and I understand that msg probably means message. But is MSG a system-wide variable? Does every channel have a msg variable? What is the scope of msg ? I also keep seeing things like ${message.encodedData} in the Templates. Do certain connector types automatically send the contents

How to use Escape character in hl7 message

霸气de小男生 提交于 2019-12-12 11:34:56
问题 I am using ca.uhn.hl7v2.util.Terser to create hl7 message. For one of the hl7 fields I need to set the following value "\home\one\two". HL7 message type is MDM_T02(version is 2.3.1). Because "\" is an escape character in hl7 messages if I try to use public void methodOne() { MDM_T02 mdmt02 = new MDM_T02(); Terser terser = new Terser(mdmt02); terser.set("OBX-5-1", "\\\\usne-server\\Pathology\\Quantum"); } In the hl7 messge OBX-5-1 is printed as "\E\E\usne-server\E\Pathology\E\Quantum". Can

Reading emails through javaMail library with Mirth Connect

[亡魂溺海] 提交于 2019-12-12 05:28:47
问题 My goal is to read emails(and possibly mark them as read in the inbox) through Mirth Connect channels. I found this Reading mail from open source Mirthconnect question about the issue. Oddly the person asking answered the question. When I tried to implement the code he provided with my specifications such as instead of gmail outlook inbox(no problems here) the channel called out error: 64DETAILS: TypeError: Cannot find function getBodyPart in object <html><head><meta http-equiv="Content-Type"

Mirth: calling an SSL SOAP web service with a client certificate

北慕城南 提交于 2019-12-11 08:10:24
问题 The scenario is around calling an external SSL SOAP web service from within Mirth. The web service is requires an SSL/TLS connection along with a client certificate. The intention is to use the built-in SOAP Sender Destination to call the remote secure web service, and somehow include that client certificate. I understand that you first need to install that client certificate into the Java runtime. This may be within the Java runtime's certificate store or the Jetty certstore. The platform:

Does Mirth connect 3.6 open source supports HTTP without using SSL manager

别等时光非礼了梦想. 提交于 2019-12-10 13:59:17
问题 I'm trying to setup a free verion of mirth connect 3.6 version for my client . I need to setup an interface with HTTP connector. What are the necessary certificates required to connect over HTTPS . can anyone list out all the checklist certificates . 回答1: No the open source version of Mirth Connect does not directly support SSL. The means to support SSL in Mirth Connect are: Use a proxy like stunnel, nginx (Example from the answer here), or Apache in front of Mirth Connect Manually manage the

Mirth Connect: javascript to call a webservice

廉价感情. 提交于 2019-12-06 08:36:58
I'm trying to call a web service from a Mirth Channel transformer javascript using apache axis library (which it's supposed to be deployed with Mirth). I've tried using the following java script, but it does not work: /*importPackage(java.net); importPackage(org.apache.axis.client.Call); importPackage(org.apache.axis.client.Service); importPackage(javax.xml.namespace.QName);*/ var endpoint = 'http://tempuri.org/IService1/'; var service = org.apache.axis.client.Service(); var call = service.createCall(); call.setTargetEndpointAddress( new URL(endpoint) ); call.setOperationName(new QName('http:/