RXS_OpenDom()
This subprocedure initializes DOM parsing for a specified chunk of XML.
Subprocedure Prototype
|
Returns an RXS_ParseDOMDS_t which contains information and pointers used by subsequent DOM parsing APIs. |
|
Chunk of XML to be used for subsequent DOM operations. |
|
Holds RXS_OpenDomDS_t used to set up initial DOM parsing options. |
Example Code
**FREE
// This example demonstrates starting a DOM parsing session by using
// RXS_OpenDom and then performing additional queries on the RXS_ParseDomDS_t
// datastructure it returned. It's important to call RXS_CloseDom once DOM
// parsing has been completed to free memory used by the DOM parser.
Ctl-Opt ActGrp(*New) BndDir('RXSBND');
/COPY QRPGLECPY,RXSCB
Dcl-Ds RootDomDS LikeDS(RXS_ParseDomDS_t);
Dcl-Ds BookDomDS LikeDS(RXS_ParseDomDS_t);
Dcl-S XPath Like(RXS_Var8Kv_t);
Dcl-S Data Like(RXS_Var1Kv_t);
Dcl-S x Uns(10);
Dcl-S gXML Like(RXS_Var64Kv_t);
gXML = '<?xml version="1.0" encoding="UTF-8"?>'
+ '<bookstore xmlns:test="testnamespace">'
+ '<book category="children">'
+ '<title lang="en"><![CDATA[Charlotte''s Web]]></title>'
+ '<author>E. B. White</author>'
+ '<year>1952</year>'
+ '<price>5.99</price>'
+ '<review><text>What a great book!</text></review>'
+ '<review><text>Highly recommended.</text></review>'
+ '</book>'
+ '<book category="cooking">'
+ '<title lang="en">Everyday Italian</title>'
+ '<author>Giada De Laurentiis</author>'
+ '<year>2005</year>'
+ '<price>30.00</price>'
+ '</book>'
+ '</bookstore>';
RXS_ResetDS( RootDomDS : RXS_DS_TYPE_PARSEDOM );
RootDomDS = RXS_OpenDom( gXML );
XPath = RXS_XPath( '/*:bookstore/*:book' );
RXS_ResetDS( BookDomDS : RXS_DS_TYPE_PARSEDOM );
BookDomDS = RXS_ParseDomToDom( XPath : RootDomDS );
for x = 1 to BookDomDS.NodeCount;
XPath = RXS_XPath( '*:book[%u]/*:title' : x );
Data = RXS_ParseDomToText( XPath : BookDomDS );
RXS_JobLog( 'Title: %s' : Data );
endfor;
RXS_CloseDom( RootDomDS );
return;
**FREE
// This example demonstrates starting a DOM parsing session by using
// RXS_OpenDom to parse an XML file stored in an IFS STMF, and then performing
// additional queries on the RXS_ParseDomDS_t datastructure it returned. It's
// important to call RXS_CloseDom once DOM parsing has been completed to free
// memory used by the DOM parser.
Ctl-Opt ActGrp(*New) BndDir('RXSBND');
/COPY QRPGLECPY,RXSCB
Dcl-Ds RootDomDS LikeDS(RXS_ParseDomDS_t);
Dcl-Ds BookDomDS LikeDS(RXS_ParseDomDS_t);
Dcl-S XPath Like(RXS_Var8Kv_t);
Dcl-S Data Like(RXS_Var1Kv_t);
Dcl-S x Uns(10);
RXS_ResetDS( RootDomDS : RXS_DS_TYPE_PARSEDOM );
RXS_ResetDS( OpenDomDS : RXS_DS_TYPE_OPENDOM );
OpenDomDS.Stmf = '/tmp/bookstore.xml';
// For this example, the IFS file /tmp/bookstore.xml contains
// XML that looks like this:
// <?xml version="1.0" encoding="UTF-8"?>
// <bookstore xmlns:test="testnamespace">
// <book category="children">
// <title lang="en"><![CDATA[Charlotte's Web]]></title>
// <author>E. B. White</author>
// <year>1952</year>
// <price>5.99</price>
// <review><text>What a great book!</text></review>
// <review><text>Highly recommended.</text></review>
// </book>
// <book category="cooking">
// <title lang="en">Everyday Italian</title>
// <author>Giada De Laurentiis</author>
// <year>2005</year>
// <price>30.00</price>
// </book>
// </bookstore>
RootDomDS = RXS_OpenDom( *Omit : OpenDomDS );
XPath = RXS_XPath( '/*:bookstore/*:book' );
RXS_ResetDS( BookDomDS : RXS_DS_TYPE_PARSEDOM );
BookDomDS = RXS_ParseDomToDom( XPath : RootDomDS );
for x = 1 to BookDomDS.NodeCount;
XPath = RXS_XPath( '*:book[%u]/*:title' : x );
Data = RXS_ParseDomToText( XPath : BookDomDS );
RXS_JobLog( 'Title: %s' : Data );
endfor;
RXS_CloseDom( RootDomDS );
return;
Data Structures
|
|
|
|
|
Internal use only |
|
|
|
Specifies the CCSID of the XML being parsed. |
|
Specifies the CCSID the parsed data will be converted to. |
|
Specifies an IFS path to an XML file to parse instead of the Input parm. |
|
|
|
|
|
|
|
Specifies the CCSID of the XML being parsed. |
|
Specifies the CCSID the parsed data will be converted to. |
|
Specifies an IFS path to an XML file to parse instead of the Input parm. |
|
Contains the current count of XML nodes tracked by this data structure. |
|
|
|
Internal use only |
|
Internal use only |
|
Internal use only |
|
Internal use only |
|
Internal use only |
|
Internal use only |
|
Internal use only |