![JAR search and dependency download from the Maven repository](/logo.png)
examples.NodeRecorder.testNodeRecorder.cpp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vtd-xml Show documentation
Show all versions of vtd-xml Show documentation
XimpleWare's VTD-XML is, far and away, the industry's most advanced and powerful XML processing model for SOA and Cloud Computing
/*
* Copyright (C) 2002-2010 XimpleWare, [email protected]
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
// vtd-xml.cpp : Defines the entry point for the console application.
//
#include "everything.h"
using namespace com_ximpleware;
int main(){
int i;
try{
VTDGen vg;
if (vg.parseFile(true,"c:/xml/newpo.xml")){
AutoPilot ap;
NodeRecorder nr;
VTDNav *vn = vg.getNav();
ap.bind(vn);
nr.bind(vn);
if (ap.selectXPath(L"(/*/*/*)[position()=1 or position()=10]")){
while((i=ap.evalXPath())!=-1){
nr.record();
}
ap.resetXPath();
// reset the nr before iteration
nr.resetPointer();
while((i=nr.iterate())!=-1){
wprintf(L"string value ==> %s \n",vn->toString(i));
}
nr.clear();
while((i=ap.evalXPath())!=-1){
nr.record();
}
ap.resetXPath();
nr.resetPointer();
while((i=nr.iterate())!=-1){
wprintf(L"string value ==> %s \n",vn->toString(i));
}
nr.clear();
}
delete vn->getXML();
delete vn;
}
}
catch (...) {
}
return 0;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy