xmldata | String Optional. String containing the XML document to convert to an XML node. Note: If you specify xmldata, do not specify $filedata or $filestream. | |
$filedata | byte[ ] Optional. byte[ ] containing the XML document to convert to an XML node. Note: If you specify $filedata, do not specify xmldata or $filestream. | |
$filestream | java.io.InputStream Optional. InputStream containing the XML document to convert to an XML node. Note: If you specify $filestream, do not specify xmldata or $filedata. | |
encoding | String Optional. Character encoding in which text is represented. Specify UTF-8 for XML files and ISO-8859-1 for HTML files. To have the parser attempt to detect the type of encoding, specify autoDetect (the default, if encoding is not specified). | |
inputProcessing | Document. Optional. Contains a set of input parameters that instruct Integration Server how to read the XML document. The fields are comparable to options in the javax.xml.stream.XMLInputFactory class. | |
Key | Description | |
isValidating | String Optional. Determines whether Integration Server performs DTD validation. Set to: true to perform DTD validation. false to disable DTD validation. This is the default. | |
isNamespaceAware | String Optional. Determines whether Integration Server provides namespace processing for XML 1.0 support while parsing the XML document. Set to: true to enable namespace processing. This is the default. false to disable namespace processing. | |
isCoalescing | String Optional. Determines whether Integration Server coalesces adjacent character data while parsing the XML document. Set to: true to coalesce adjacent character data. false to indicate that Integration Server does not coalesce adjacent character data. This is the default. | |
isReplacingEntity References | String Optional. Determines whether, while parsing the XML document, Integration Server replaces internal entity references with replacement text and treats them as characters. Set to: true to replace entity references. false to indicate entity references will not be replaced. This is the default. | |
isSupporting ExternalEntities | String Optional. Determines whether Integration Server resolves external parsed entities while parsing the XML document. Set to: true to resolve external parsed entities. false to indicate Integration Server does not support external parsed entities. The JVM in which Integration Server runs determines the default. | |
supportDTD | String Optional. Determines whether Integration Server supports DTDs while parsing the XML document. Set to: true to support DTDs while parsing the XML document. false to disable support of DTDs while parsing the XML document. This is the default. | |
partitionSize | String Optional. Specifies the size, measured in bytes, of the partitions on the heap where the enhanced XML parser stores parsed document information. Specify a suffix of “k” to indicate kilobytes or “m” to indicate megabytes. For example, 10k or 10m. If you do not specify a value, Integration Server uses the default partition size value specified on the Settings > Enhanced XML parsing page in Integration Server Administrator. |
node | org.w3c.dom.Node XML node representing the returned XML document. This object can be used as input to webMethods services that consume XML nodes in the form of a DOM object. |