From: Shrock, C. <Sh...@in...> - 2005-01-15 21:52:37
|
In particular, Meditech. -----Original Message----- From: Shrock, Court Sent: Saturday, January 15, 2005 1:51 PM To: 'hl7...@li...' Subject: PipeParser addition for message types that do not specify a value for MSH9-2 (event trigger) I modified PipeParser.getMessageStructure so as to return the non-null value of MSH9 in the case that it is the only value in the message. I thought someone might be interested that there are systems out there that require this :) Added just before the exception string is created: <snip/> } else if (comps.length == 1 && comps[0] != null) { messageStructure = comps[0]; } <snip/> |