Child pages
  • XmlReader

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Hidden
DO NOT EDIT THE CONTENT OF THIS PAGE DIRECTLY, UNLESS YOU KNOW WHAT YOU'RE DOING.
		THE STRUCTURE OF THE CONTENT IS VITAL IN BEING ABLE TO EXTRACT CHANGES FROM THE PAGE AND MERGE THEM BACK INTO SERVOY SOURCE


HTML Table
classservoy sReturnTypes
Table Row (tr)
styleheight: 30px;
Table Head (th)
Return Types
Table Row (tr)
Table Cell (td)
Span
classsWordList
XmlNode

HTML Table
classservoy sSummary
Colgroup Tag
Column
padding0px
width80px

Column

Table Row (tr)
styleheight: 30px;
Table Head (th)
colspan2
Method Summary
Table Body (tbody)
Table Row (tr)
Table Cell (td)
XmlNode[]
Table Cell (td)
#readXmlDocumentFromFile(argument)
Reads an XML document from a file.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
XmlNode[]
Table Cell (td)
#readXmlDocumentFromString(argument)
Reads an XML document from a string.

HTML Table
idfunction
classservoy sDetail
Colgroup Tag
Column
padding0px
width100%

Table Row (tr)
styleheight: 30px;
Table Head (th)
colspan1
Method Details
Table Body (tbody)
idreadXmlDocumentFromFile
classnode
Table Row (tr)
idname
Table Cell (td)
readXmlDocumentFromFile
Table Row (tr)
idsig
Table Cell (td)
Span
stylefloat: left; margin-right: 5px;
XmlNode[]
Span
stylefloat: left; font-weight: bold;
idiets
readXmlDocumentFromFile
Span
stylefloat: left;
idiets
(argument)
Table Row (tr)
iddes
Table Cell (td)
Reads an XML document from a file.
Table Row (tr)
idprs
Table Cell (td)
Parameters
argument
Table Row (tr)
idret
Table Cell (td)
Returns
XmlNode[]
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
// specifies a reference to a file containing valid XML
var xmlNodes = plugins.XmlReader.readXmlDocumentFromFile('c:/test.xml');
var childNodes = xmlNodes[0].getChildNodes();
// shows a dialog to open an xml file, then reads the file
var xmlFile = plugins.file.showFileOpenDialog(1);
var xmlNodes = plugins.XmlReader.readXmlDocumentFromFile(xmlFile);
var childNodes = xmlNodes[0].getChildNodes();
Table Row (tr)
classlastDetailRow
Table Cell (td)

Table Body (tbody)
idreadXmlDocumentFromString
classnode
Table Row (tr)
idname
Table Cell (td)
readXmlDocumentFromString
Table Row (tr)
idsig
Table Cell (td)
Span
stylefloat: left; margin-right: 5px;
XmlNode[]
Span
stylefloat: left; font-weight: bold;
idiets
readXmlDocumentFromString
Span
stylefloat: left;
idiets
(argument)
Table Row (tr)
iddes
Table Cell (td)
Reads an XML document from a string.
Table Row (tr)
idprs
Table Cell (td)
Parameters
argument
Table Row (tr)
idret
Table Cell (td)
Returns
XmlNode[]
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
var xmlString = '<books><book price="44.95">
<title>Core Java 1.5</title>
<author>Piet Klerksen</author>
<nrPages>1487</nrPages>
</book>
<book price="59.95">
<title>Developing with Servoy</title>
<author>Cheryl Owens and others</author><nrPages>492</nrPages></book></books>';
var xmlNodes = plugins.XmlReader.readXmlDocumentFromString(xmlString);
Table Row (tr)
classlastDetailRow
Table Cell (td)