Thanks to help from this list in the past we have been able to apply our own local implementation of HL7 escaping effectively to a hapi context.
Recently we have been updating our application specific message formats, and realised we had not added our HL7 escaping implementation. We have succeeded in adding it using code like this: public class LAB_ORM_ORU extends AbstractMessage { private static final ModelClassFactory mcf = new DefaultModelClassFactory(); public LAB_ORM_ORU() throws HL7Exception { this(mcf); } public LAB_ORM_ORU(ModelClassFactory factory) throws HL7Exception { super(factory); this.addSegments(); this.attachEscapingParser(); } private void addSegments() throws HL7Exception { Class<MSH> addMsh = MSH.class; this.add(addMsh, true, false); Class<EVN> addEvn = EVN.class; this.add(addEvn, false, false); Class<NTE> addNte = NTE.class; this.add(addNte, false, true); Class<PATIENT> addPat = PATIENT.class; this.add(addPat, false, false); Class<ZMV> addZmv = ZMV.class; this.add(addZmv, false, false); Class<ZRC> addZRCs = ZRC.class; this.add(addZRCs, false, true); Class<ORDER_OBSERVATION> addObsGroup = ORDER_OBSERVATION.class; this.add(addObsGroup, true, true); } private void attachEscapingParser() { ParserConfiguration parserConfiguration = new ParserConfiguration(); parserConfiguration.setEscaping(new EscapingQhImpl()); getParser().setParserConfiguration(parserConfiguration); } . . . } However, in the attachEscapingParser method, the use of the .setParserConfiguration method is deprecated. Can anyone suggest how this could be done avoiding deprecated methods? Thanks Ian Systems Integration Team Queensland Department of Health Australia ******************************************************************************** This email, including any attachments sent with it, is confidential and for the sole use of the intended recipient(s). This confidentiality is not waived or lost, if you receive it and you are not the intended recipient(s), or if it is transmitted/received in error. Any unauthorised use, alteration, disclosure, distribution or review of this email is strictly prohibited. The information contained in this email, including any attachment sent with it, may be subject to a statutory duty of confidentiality if it relates to health service matters. If you are not the intended recipient(s), or if you have received this email in error, you are asked to immediately notify the sender by telephone collect on Australia +61 1800 198 175 or by return email. You should also delete this email, and any copies, from your computer system network and destroy any hard copies produced. If not an intended recipient of this email, you must not copy, distribute or take any action(s) that relies on it; any form of disclosure, modification, distribution and/or publication of this email is also prohibited. Although Queensland Health takes all reasonable steps to ensure this email does not contain malicious software, Queensland Health does not accept responsibility for the consequences if any person's computer inadvertently suffers any disruption to services, loss of information, harm or is infected with a virus, other malicious computer programme or code that may occur as a consequence of receiving this email. Unless stated otherwise, this email represents only the views of the sender and not the views of the Queensland Government. **********************************************************************************
------------------------------------------------------------------------------
_______________________________________________ Hl7api-devel mailing list Hl7api-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/hl7api-devel