Xml (XmlDoc function)

From m204wiki
Revision as of 00:33, 7 December 2010 by Admin (talk | contribs) (1 revision)
Jump to navigation Jump to search

Serialize XmlDoc as UTF-8 string

Xml is a member of the XmlDoc class.

This function converts an XmlDoc to its textually represented XML document (this process is called serialization, because the text representation of a document is called the serial form).

Syntax

  %utf8Str = doc:Xml([options])

Syntax Terms

utf8Str
The string serialization of the XmlDoc, encoded in UTF-8.
doc
XmlDoc expression, whose content is serialized.
options
Any combination of the following options (but single occurrences only):
  • AllowXmlDecl or NoXmlDecl AllowXmlDecl, the default, produces the XML declaration (that is, <?xml&thinsp.version=...?>) if the declaration was set (see Version). NoXmlDecl omits the XML declaration.
  • Indent n Inserts space characters (and line-ends, as described for the next option) into the serialized string such that if the string is broken at the line-ends and displayed as a tree, the display of each lower level in the subtree is indented n spaces from the previous level's starting point. If serialized output with an Indent value of 2 is displayed as a tree, the spacing is as in the following:
        <top>
          <leaf1 xx="yy">value</leaf1>
          <sub>
            <leaf2>value</leaf2>
          </sub>
        </top>
    

    n is a non-negative integer, and it maximum value (as of Sirius Mods version 7.0) is 254.

    One of the line-end options, below, must also be specified.

  • One of the line-end options below, to provide line breaks in the output after any of the following is serialized:
    • An element start-tag, if it has any non-text node children
    • An empty element tag, or an empty element end-tag
    • A processing instruction (PI)
    • A comment
    • A text node, if it has any siblings
    CR
    Insert a carriage-return character as the line-end sequence in the above cases.
    LF
    Insert a linefeed character as the line-end sequence in the above cases.
    CRLF
    Insert a carriage-return character followed by a linefeed character as the line-end sequence in the above cases.


  • NoEmptyElt This indicates that an empty element is serialized with its start tag followed by an end tag. For example:
        <middleName></middleName>
    

    If this option is not specified, the default is to serialize an empty element with an empty element tag:

        <middleName/>
    
  • OmitNullElement An Element node that has no children and no Attributes will not be serialized, unless it is the top level Element in the subtree being serialized. The serialization of a child-less and Attribute-less Element is omitted, even if the Element's serialization would contain Namespace declarations in its start tag. If an Element node has no Attributes, but has (only) Element children (one or more), and all of its children are Attribute-less and child-less, then that parent Element is serialized, even though its content in the serialization is empty. That parent is serialized with a start tag and an end tag (and an inserted line separator, if called for by the serializing method's parameter options). For example, if the Print method display of a particular XmlDoc object is the following when OmitNullElement is not specified:
        <top>
           <middle>
              <empty/>
              <p:empty2 xmlns:p="uri:stuff"/>
           </middle>
        </top>
    

    Here is the display of the XmlDoc with the OmitNullElement option specified:

        <top>
           <middle>
           </middle>
        </top>
    

    The OmitNullElement option is available as of Sirius Mods version 7.3.

  • SortCanonical This indicates that namespace declarations (based on the prefix being declared) and attributes (based on the namespace URI followed by the local name) are serialized in sorted order. This can be useful, for instance, when using the Xml method to serialize a portion of an XML document for a signature. The sort order for namespace declarations and attributes is from lowest to highest, and it uses the Unicode code ordering (for example, numbers are lower than letters). This option was added in Sirius Mods version 6.9 as a step towards support for canonicalization. As of version 7.0, comprehensive support for canonicalized serialization is provided by the Serial method ExclCanonical option (?? refid=exclcan.).

Usage Notes

  • Options may be specified in any case, for example, you can use either NoXmlDecl or noxmldecl, interchangeably.
  • The XmlDoc method object must be well-formed (that is, it must contain an Element node). For more information about well-formed documents, see ?? refid=welform..
  • Since the result of the Xml function has UTF-8 encoding, you cannot treat it as an EBCDIC string: for example, printing the string will not produce displayable characters. The “See Also” section below mentions some methods for obtaining an EBCDIC serialization of an XmlDoc.
  • You can use the Print method (??Print) to display a document on the terminal, or to capture a displayable version of a document, but Print is used to insert line breaks and optional indentation, which may not be an accurate serialization of an XmlDoc.
  • Using one of the line-end character options (CR, LF, CRLF) produces output that is analogous to the BothCompact option of the Print method.
  • If one of the line-end (CR, LF, CRLF) options or if Indent is specified, and an element to be serialized has the xml:space="preserve" attribute, then within the serialization of that element and its descendants, no line-end (nor indentation) characters are inserted to provide readability. In addition, the xml:space="default" attribute has no effect under these options: specified by itself, it does not influence serialization, nor does it cause resumption of readability line-ends or indents if they were suspended by a containing xml:space="preserve".
  • As of version 6.7, the Xml method uses the hexadecimal character references specified in the XML Canonicalization specification (:hp0 color=SirLink.http://www.w3.org/TR/xml-c14n:ehp0.) to display the following characters:
    • For Attribute nodes: tab, carriage return, and linefeed
    • For Text nodes: carriage return

    Since the character references are not subject to the standard XML whitespace normalization (?? refid=normwhi.), a serialized document (or subtree) that is then deserialized will retain this whitespace.

    These character references are used:

    tab
    &#x9;
    CR
    &#xD;
    LF
    &#xA;

    The EBCDIC and corresponding ASCII encodings of the characters is:

    &thinsp.
    EBCDIC ASCII
    tab
    X'05' X'09'
    CR
    X'0D' X'0D'
    LF
    X'25' X'0A'
  • As of Sirius Mods version 7.6, Attribute values are always serialized within double-quotation-mark (") delimiters, and a double-quotation mark character in an attribute value is serialized as &quot;. Prior to version 7.6, this convention was not strictly observed.

Examples

  • The Janus SocketsR documents the HttpRequest object, whose AddXml method has nearly the same options as the Xml function; the following fragment serializes an XmlDoc and sends it as a request to a Web server. Note that if you use the Xml function and $Sock_Send directly, instead of using an HTTP helper object, always use the BINARY option of $Sock_Send, because the result of the Xml function is UTF-8, rather than EBCDIC.
        %httpreq object HttpRequest
        %httpresp object HttpResponse
        %doc object XmlDoc
        %httpreq = New
        %doc = New
        %doc:LoadXml('<inquire><stock>IBM</stock>' With -
           <dateRange/></inquire>', 'NoEmptyElt')
    
        %httpreq:URL = 'foo.com/bar'
        %httpreq:AddXml(%doc)
        %httpresp = %httpreq:Post('HTTP_CLIENT')
    
  • The following fragment is a simple example for serializing an XmlDoc, which could then, for example, be sent on a transport such as MQ:
        %s Longstring
        %s = %doc:Xml
    

Request-Cancellation Errors

  • XmlDoc does not contain an Element.
  • Options is invalid.
  • Insufficient free space exists in CCATEMP.


See Also

  • Use ??Print to display an XML document for debugging.
  • Use ??Serial with the EBCDIC option to obtain an EBCDIC serialization of an XML document.
  • Use ??WebSend to serialize an XmlDoc and send it as an HTTP response using Janus Web Server.
  • The string deserialization functions are ??LoadXml and ??WebReceive.