...
OpenMRS drops HL7 messages into this table, and then this channel reads the messages from the database. This channel passes on the HL7 message to another channel that sends the HL7 message off to the PACS system via LLP. We use the following preprocessing script on the second channel to convert the xml format that the Mirth database reader returns into a format Mirth recognizes at HL7:
Code Block |
---|
// Strip off the leading and trailing <result> and <message> tags
message = message.replace(/&/g,"&");
message = message.replace(/ /g,"\x0D");
message = message.replace("<result><message>","");
message = message.replace("</message></result>","");
return message;
|
Other Mirth comments that could be useful
Mirth to OpenMRS REST User Authentication Problem that was resolved https://groups.google.com/a/openmrs.org/forum/#!topic/dev/g_LANqdHiDU