Hapi xml 解析器在使用 Hapi Xml 解析器对 HL7 v2.7 消息进行编码时给出以下异常。
ca.uhn.hl7v2.HL7Exception:无法对 GenericMessage 进行 XML 编码。消息必须具有可识别的结构。
下面是我用来编码消息的代码片段
HapiContext context = new DefaultHapiContext(modelClassFactory)
PipeParser pipeParser = context.getPipeParser();
pipeParser.setValidationContext(new NoValidation());
pipeParser.getParserConfiguration().setAllowUnknownVersions(true);
Message msg = pipeParser.parse(document);
Parser xmlParser = context.getXMLParser();
return xmlParser.encode(msg);
有什么建议/解决方案吗?