1.2k questions

1.4k answers

361 comments

339 users

Categories

Sidebar
0 votes
3.1K views
by brandon-w-8204 (34.1k points)
The registry is requesting that we add CDATA tags to the soap envelope. How do you add this and what is it.

1 Answer

0 votes
 
Best answer

The term CDATA is used about text data that should not be parsed by the XML parser. Some registries mostly Immunization registries need the HL7 message that is in the soap envelope to be wrapped with this tag.

Add "<![CDATA[" before the hl7 message

Add "]]>" to after the hl7 message

Example of wrapping the HL7 with a CDATA tag in a qvera soap envelope.

 

         <urn:hl7Message>
            <![CDATA[{m:/}]]>
         </urn:hl7Message>
by brandon-w-8204 (34.1k points)
...