Questions tagged [mirth-connect]

Use this tag to ask about usage of Mirth Connect, the open source interface engine.

Mirth Connect is an open source interface engine. Mirth Connect is focused on the healthcare community and many of it's use cases are centered around healthcare based messaging like HL7, CDA, CCD, CCDA, DICOM, and other clinical messaging formats. It is also well suited to more general formats like CSV, XML, and generic database calls.

More information on Mirth Connect is available from: http://www.mirthcorp.com/community/wiki/dashboard.action - Wiki http://www.mirthcorp.com/community/wiki/dashboard.action - Forums

Mirth Connect is often known as just "Mirth" but Mirth is the company that sponsored the Mirth Connect project. They made several other major products including Mirth Match (an EMPI), Mirth Results (a CDR), Mirth Mail (a DIRECT email server), and Mirth SignOn (a SAML compliant IdP). Mirth is now a part of NextGen.

76 questions
7
votes
1 answer

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

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 …
ssr
  • 71
  • 1
  • 2
5
votes
2 answers

Set Mirth destination to send transform data back as a custom ACK

I have a Mirth channel that set up as a web service listener, it receives an ID, build an HL7 query message and send this query and eventually get back an HL7 response. Channel Name: QueryChanel Source Connector Type: Web Service…
Fylix
  • 2,551
  • 6
  • 45
  • 72
4
votes
3 answers

Where are the user guides for Mirth Connect?

Where are the user guides for Mirth Connect? Google searches point to an older forum post and relatively old links to version 3.0.1. The current release is 3.6.1 and is several years newer than those links.
Freiheit
  • 8,408
  • 6
  • 59
  • 101
4
votes
5 answers

How to convert local date to UTC in Mirth?

In Mirth I receive a local datetime string (201801011000) which I need to convert to UTC. I soon found out using the classic js new Date() doesn't work well. This for example: var d = new Date("2018-01-01 10:00"); logger.info(d.toString()); gives…
kramer65
  • 50,427
  • 120
  • 308
  • 488
4
votes
1 answer

mirth connect stop message propagation through destinations

I am using Mirth Connect 3.5.0.8232. I have a Database Reader as source connector and a JavaScript writer as destination connector. I decided to put some fancy code in the destination, doing four separate things, which should follow one after the…
hello_earth
  • 1,442
  • 1
  • 25
  • 39
3
votes
2 answers

how do i check if attribute from XML tag is undefined JavaScript (Mirth Connect)

I want to check if attribute in XML tag is present or not. here is the sample xml tag: i Want to check following conditions.. if tag is present. if @code is present. if @code is null. currently I am checking condition as…
AHP
  • 51
  • 1
  • 7
3
votes
2 answers

How to create a mirth channel utilizing rest API.

I want export channel messages to ftp server or external drive. I thing we can export messages via rest API. Could you any one help on this..
3
votes
1 answer

How to loop over all the headers in hl7 message in mirth?

I'm new to mirth and trying to loop over all the hl7 message headers in mirth, I know that I can loop over one header like this: for each(var OBX in msg['OBX']) { logger.info('message OBX obj: ' + OBX['OBX.3']['OBX.3.2'].toString()); } but…
Fadi
  • 2,320
  • 8
  • 38
  • 77
3
votes
2 answers

Mirth Connect : How to create channel to make HTTP request once in a day

Requirement is that we need to download some certificates everyday. For this we have RESTfull endpoint in our application and when manually sent request to RESTfull endpoint, then certificates are downloaded to our application folder. Now I am…
Sameer K
  • 799
  • 1
  • 7
  • 26
3
votes
1 answer

Does Mirth Open-Source support channels that work over https (using ssl)

This is basically a yes/no question. I am investigating Mirth Connect for my company but, at least to start out, we need this to work using only the Open Source version. Of course, HIPAA requires that all message sending be done over HTTPS (using…
Seth Spearman
  • 6,710
  • 16
  • 60
  • 105
2
votes
2 answers

Query message store of mirth connect

Can I use mirth connect to store millions of HL7v2 messages (pipe delimited) and query them programmatically by our third party software application at a later point of time? What's the best way to do that? Is mirth's REST API capable to query its…
OneWorld
  • 17,512
  • 21
  • 86
  • 136
2
votes
1 answer

How to process only the most recent file in a directory using Mirth Connect?

I'm attempting to create a channel designed to take a binary file from an sFTP site and transfer it to a second sFTP site. The source site updates their files on Friday, so I'm creating the channel to run every Sunday. The main issue is that I want…
michaelmccarthy404
  • 498
  • 1
  • 5
  • 19
2
votes
1 answer

SQL statements in javascript with variables that contains an apostrophe

I have a working code in Mirth Connect (used to parse and dispatch HL7 data) that inserts data via jdbc into a database. Javascript is used to generate the appropriate SQL statement. Everything is working fine except when the variables have special…
wondernewbie
  • 61
  • 1
  • 8
2
votes
1 answer

Extracting CCD document values using MDHT via Mirth

I am trying to use MDHT tools to extract values from a CCD document via Mirth. I am doing this in the following way. Downloaded Java runtime libraries and placed them in Mirth's custom-lib folder and wrote sample code to extract some patient values…
Driver123
  • 133
  • 1
  • 11
2
votes
1 answer

Mirth: Evaulating SWITCH versus IF Statement

I'm using a product called Mirth (version 3.6) to execute transform code. It doesn't seem to have an interactive debugger so can anyone explain why the following code in a destination transform will only log from the IF statement and not from the…
Geekn
  • 2,650
  • 5
  • 40
  • 80
1
2 3 4 5 6