From: Shrock, C. <Sh...@in...> - 2005-01-15 21:51:38
|
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/> |