Skip to main content

XML Reserved Characters

XML Reserved Characters

Because BPL processes are saved as XML documents, you must use XML entities in the place of XML reserved characters:

To include this character... Use this XML entity...
> >
< &lt;
& &amp;
' &apos;
" &quot;

For example, to assign the value Joe’s "Good Time" Bar & Grill to a property, set Value equal to the following:

"Joe&apos;s &quot;Good Time&quot; Bar &amp; Grill"

This restriction does not apply inside <code> and <sql> activities, because InterSystems IRIS® automatically wraps a CData block around the text that you enter into the editor. (In the XML standard, a CData block encloses text that should not be parsed as XML. Thus you can include reserved characters in that block.)

FeedbackOpens in a new tab