AllowNull (XmlDoc property): Difference between revisions
m (edits, tags and links) |
mNo edit summary |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{Template:XmlDoc:AllowNull subtitle}} | {{Template:XmlDoc:AllowNull subtitle}} | ||
The <var> | The <var>AllowNull</var> property indicates whether or not the method object <var>XmlDoc</var> allows the deserialization of an XML document that contains nodes that have null characters (U+0000) in their values. A <var>[[Enumerations#Using Boolean enumerations|Boolean]]</var> value of <var>True</var> allows such deserializations. The default value, <var>False</var>, cancels the request if such a deserialization is attempted. | ||
<p>For example, the following <var>Element</var> node is acceptable for deserialization into an <var>XmlDoc</var> (for example, by using <var>[[LoadXml (XmlDoc/XmlNode function)|LoadXml]]</var>) only if <var>AllowNull</var> is < | <p>For example, the following <var>Element</var> node is acceptable for deserialization into an <var>XmlDoc</var> (for example, by using <var>[[LoadXml (XmlDoc/XmlNode function)|LoadXml]]</var>) only if <var>AllowNull</var> is <var>True</var>:</p> | ||
<p class="code"><a>Element contains null: & | <p class="code"><a>Element contains null: &#0;</a> | ||
</p> | </p> | ||
<p>If <code>AllowNull=True</code>, null characters are also allowed for "direct setting" of a node's value using one of the many <var>Add</var> or < | <p>If <code>AllowNull=True</code>, null characters are also allowed for "direct setting" of a node's value using one of the many <var>Add</var> or <var>Insert</var> methods. For example:</p> | ||
<p class="code">%nod:AddElement('a', 'Element contains null:' With $X2C('00')) | <p class="code">%nod:AddElement('a', 'Element contains null:' With $X2C('00')) | ||
</p> | </p> | ||
==Syntax== | ==Syntax== | ||
Line 15: | Line 13: | ||
<table class="syntaxTable"> | <table class="syntaxTable"> | ||
<tr><th>%currentBoolean</th> | <tr><th>%currentBoolean</th> | ||
<td>The <var>Boolean</var> enumeration value of <var class="term">doc</var>'s <var>AllowNull</var> property | <td>The <var>Boolean</var> enumeration value of <var class="term">doc</var>'s <var>AllowNull</var> property. </td></tr> | ||
<tr><th>doc</th> | <tr><th>doc</th> | ||
<td>An <var>XmlDoc</var> object expression.</td></tr> | <td>An <var>XmlDoc</var> object expression.</td></tr> | ||
Line 28: | Line 26: | ||
now obsolete <code>InvalidChar=Allow</code> setting to allow null characters in an <var>XmlDoc</var>, you can use <code>AllowNull=True</code> instead. | now obsolete <code>InvalidChar=Allow</code> setting to allow null characters in an <var>XmlDoc</var>, you can use <code>AllowNull=True</code> instead. | ||
<li>Deserialization of Unicode characters that do not translate to EBCDIC is not allowed unless the <var>[[LoadXml (XmlDoc/XmlNode function)#allowUntrans|AllowUntranslatable]]</var> deserialization option is used. | <li>Deserialization of Unicode characters that do not translate to EBCDIC is not allowed unless the <var>[[LoadXml (XmlDoc/XmlNode function)#allowUntrans|AllowUntranslatable]]</var> deserialization option is used. | ||
<li>When providing EBCDIC characters to be stored in an <var>XmlDoc</var>, those EBCDIC characters must be translatable to Unicode. If you have EBCDIC strings that may not be translatable, you must handle those before passing them to an <var>XmlDoc</var> update operation. For example, you may be able to use the <var | <li>When providing EBCDIC characters to be stored in an <var>XmlDoc</var>, those EBCDIC characters must be translatable to Unicode. If you have EBCDIC strings that may not be translatable, you must handle those before passing them to an <var>XmlDoc</var> update operation. For example, you may be able to use the <var>Untranslatable</var> argument of the <var>[[EbcdicToUnicode (String function)|EbcdicToUnicode]]</var> function. | ||
<li>A null character in an <var>XmlDoc</var> is serialized as an XML hexadecimal character reference: <code>& | <li>A null character in an <var>XmlDoc</var> is serialized as an XML hexadecimal character reference: <code>&#x0;</code>. | ||
<li><var>AllowNull</var> is new as of <var class="product">[[Sirius Mods]]</var> Version 7.6. | <li><var>AllowNull</var> is new as of <var class="product">[[Sirius Mods]]</var> Version 7.6. | ||
</ul> | </ul> | ||
==Examples== | ==Examples== | ||
In the following request, an EBCDIC X'FF' character requires a replacement to avoid request cancellation, but setting <var>AllowNull</var> to <code>True</code> lets a null be added to the <var>XmlDoc</var>. | |||
In the following request, an | |||
<p class="code">Begin | <p class="code">Begin | ||
%d is object xmldoc auto new | %d is object xmldoc auto new | ||
Line 62: | Line 59: | ||
The Buddha dog says | The Buddha dog says | ||
<nowiki><!--substitute character is ?--></nowiki> | <nowiki><!--substitute character is ?--></nowiki> | ||
<a>nothingness: & | <a>nothingness: &#x0;</a> | ||
</zen> | </zen> | ||
</p> | </p> |
Latest revision as of 20:49, 31 May 2011
Allow null characters in node values? (XmlDoc class)
The AllowNull property indicates whether or not the method object XmlDoc allows the deserialization of an XML document that contains nodes that have null characters (U+0000) in their values. A Boolean value of True allows such deserializations. The default value, False, cancels the request if such a deserialization is attempted.
For example, the following Element node is acceptable for deserialization into an XmlDoc (for example, by using LoadXml) only if AllowNull is True:
<a>Element contains null: �</a>
If AllowNull=True
, null characters are also allowed for "direct setting" of a node's value using one of the many Add or Insert methods. For example:
%nod:AddElement('a', 'Element contains null:' With $X2C('00'))
Syntax
%currentBoolean = doc:AllowNull doc:AllowNull = newBoolean
Syntax terms
%currentBoolean | The Boolean enumeration value of doc's AllowNull property. |
---|---|
doc | An XmlDoc object expression. |
newBoolean | The Boolean value to assign to doc's AllowNull property. |
Usage notes
- Nodes that are added to an XmlDoc that has
AllowNull=True
may not then be the source node in a subtree copy (AddSubtree or InsertSubtreeBefore) to a target XmlDoc that hasAllowNull=False
. - All Unicode characters except null can always be stored in an XmlDoc, so setting AllowNull to
True
means all Unicode characters can be stored. If you were using the now obsoleteInvalidChar=Allow
setting to allow null characters in an XmlDoc, you can useAllowNull=True
instead. - Deserialization of Unicode characters that do not translate to EBCDIC is not allowed unless the AllowUntranslatable deserialization option is used.
- When providing EBCDIC characters to be stored in an XmlDoc, those EBCDIC characters must be translatable to Unicode. If you have EBCDIC strings that may not be translatable, you must handle those before passing them to an XmlDoc update operation. For example, you may be able to use the Untranslatable argument of the EbcdicToUnicode function.
- A null character in an XmlDoc is serialized as an XML hexadecimal character reference:
�
. - AllowNull is new as of Sirius Mods Version 7.6.
Examples
In the following request, an EBCDIC X'FF' character requires a replacement to avoid request cancellation, but setting AllowNull to True
lets a null be added to the XmlDoc.
Begin %d is object xmldoc auto new %n1 is object xmlnode %n2 is object xmlnode %n3 is object xmlnode %txt is string len 32 %uni is unicode %d:loadXml('<zen>The Buddha dog says</zen>') %n1 = %d:selectSingleNode('zen') %txt = 'substitute character is ' with $X2C('FF') %uni = %txt:ebcdicToUnicode(untranslatable='?') %n2 = %n1:addComment(%uni) printText {~} = {%n2:value} %d:allownull = true %n3 = %n1:addElement('a', 'nothingness: ' With $X2C('00')) %d:print end
The result is:
%n2:value = substitute character is ? <zen> The Buddha dog says <!--substitute character is ?--> <a>nothingness: �</a> </zen>