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
{div:style=}
Wiki Markup
Div
styledisplay:none

DO

NOT

EDIT

THE

CONTENT

OF

THIS

PAGE

DIRECTLY

(EXCEPT

INSIDE

THE

DIV

BELOW

WITH

ID=DESCRIPTION),

UNLESS

YOU

KNOW

WHAT

YOU'RE

DOING.


THE

STRUCTURE

OF

THE

CONTENT

IS

VITAL

IN

BEING

ABLE

TO

AUTO

UPDATE

THE

CONTENT

THROUGH

THE

DOC

GENERATOR.

\\ \\ Enter additional information related to this



Enter additional information related to this 'class'

inside

the

\

{div}

macro

with

'id=description'

{div} {div:id=description}{div}\\ {table:id=|class=servoy sReturnTypes}{tr:style=height: 30px;}{th}Return Types{th}{tr}{tr}{td}{span:class=sWordList}[XmlNode]{span}{td}{tr}{table}\\ {table:id=|class=servoy sSummary}{colgroup}{column:width=80px|padding=0px}{column}{column}{column}{colgroup}{tr:style=height: 30px;}{th:colspan=2}Method Summary{th}{tr}{tbody}{tr}{td}[XmlNode]\[]{td}{td}[#readXmlDocumentFromFile]\(argument) Reads an XML document from a file.{td}{tr}{tbody}{tbody}{tr}{td}[XmlNode]\[]{td}{td}[#readXmlDocumentFromString]\(argument) Reads an XML document from a string.{td}{tr}{tbody}{table}\\ {table:id=function|class=servoy sDetail}{colgroup}{column:width=100%|padding=0px}{column}{colgroup}{tr:style=height: 30px;}{th:colspan=1}Method Details{th}{tr}{tbody:id=readXmlDocumentFromFile-Object}{tr:id=name}{td}h6.readXmlDocumentFromFile{td}{tr}{tr:id=sig}{td}{span:style=margin-right: 5px;}[XmlNode]\[]{span}{span:style=font-weight: bold;}readXmlDocumentFromFile{span}{span}\(argument){span}{td}{tr}{tr:id=des}{td}{div:class=sIndent}Reads an XML document from a file.{div}{td}{tr}{tr:id=prs}{td}*Parameters*\\{div:class=sIndent}\{[Object]} argument {div}{td}{tr}{tr:id=ret}{td}*Returns*\\{div:class=sIndent}[XmlNode]\[]{div}{td}{tr}{tr:id=sam}{td}*Sample*\\{div:class=sIndent}{code:language=javascript}

Div
iddescription


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

HTML Table
id
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-Object
Table Row (tr)
idname
Table Cell (td)
readXmlDocumentFromFile
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
XmlNode[]
Span
stylefont-weight: bold;
readXmlDocumentFromFile
Span
(argument)
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
Reads an XML document from a file.
Table Row (tr)
idprs
Table Cell (td)
Parameters
Div
classsIndent
{Object} argument
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
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();
{code}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{tbody:id=readXmlDocumentFromString-String}{tr:id=name}{td}h6.readXmlDocumentFromString{td}{tr}{tr:id=sig}{td}{span:style=margin-right: 5px;}[XmlNode]\[]{span}{span:style=font-weight: bold;}readXmlDocumentFromString{span}{span}\(argument){span}{td}{tr}{tr:id=des}{td}{div:class=sIndent}Reads an XML document from a string.{div}{td}{tr}{tr:id=prs}{td}*Parameters*\\{div:class=sIndent}\{[String]} argument {div}{td}{tr}{tr:id=ret}{td}*Returns*\\{div:class=sIndent}[XmlNode]\[]{div}{td}{tr}{tr:id=sam}{td}*Sample*\\{div:class=sIndent}{code:language=javascript}
Table Row (tr)
classlastDetailRow
Table Cell (td)

Table Body (tbody)
idreadXmlDocumentFromString-String
Table Row (tr)
idname
Table Cell (td)
readXmlDocumentFromString
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
XmlNode[]
Span
stylefont-weight: bold;
readXmlDocumentFromString
Span
(argument)
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
Reads an XML document from a string.
Table Row (tr)
idprs
Table Cell (td)
Parameters
Div
classsIndent
{String} argument
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
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);
{code}{div}{td}{tr}{tr:class=lastDetailRow}{td}{td}{tr}{tbody}{table}
Table Row (tr)
classlastDetailRow
Table Cell (td)