Tagged Questions

A processor for parsing, validating, serializing and manipulating XML, written in C++

learn more… | top users | synonyms

3
votes
1answer
74 views

Differences between Xerces-C++ v2 and v3 branches

Checking the Xerces-C++ webpage, I saw there are two major branches of the parser: Version 2.8.0 and Version 3.1.1 What are the main differences between those two? (couldn't find any summary on ...
2
votes
2answers
251 views

sample XSD fails with “error: no declaration found for element X”

In spite of being a total newbie in the xml parsing arena, I was able to xsd to create valid c++ and compile and link successfully, but the compiler optimized(?) away the instantiation. So, starting ...
2
votes
2answers
940 views

Making Xerces parse a string insted of a file

I know how to create a complete dom from an xml file just using XercesDOMParser... xercesc::XercesDOMParser parser = new xercesc::XercesDOMParser(); parser->parse(path_to_my_file); ...
2
votes
1answer
152 views

DOM elements memory allocation management on Xerces-C

It has been two days for me to struggle on xml parsing problems and it still hasn't finished yet :) Well, After many trils I finally decided to use Xerces-C to parse xml in my c++ application. ...
2
votes
1answer
248 views

Get default value for element from schema using xerces (C++)

Say I have a schema which defines an element as follows: <xsd:element name="Widget" type="tns:WidgetType" /> <xsd:complexType name="WidgetType"> <xsd:sequence> ...
2
votes
3answers
1k views

Xerces-C problems; segfault on call to object destructor

I've been playing around with the Xerces-C XML library. I have this simple example I'm playing with. I can't seem to get it to run without leaking memory and without segfaulting. It's one or the ...
1
vote
1answer
59 views

XmlSpy: memory leaks in auto-generated xml parser

I generated a C++ xml parser using Altovas XmlSpy 2011R3 SP1. The parser is based on Xerces 3.1 and used as a dynamic link library with MFC support. I'm getting memory leaks inside xerces just ...
1
vote
1answer
131 views

Is there a lightweight approach in producing XML with Xerces-C++?

This application runs on an embedded platform with low processing power and memory. I want to produce huge XML from the application. Currently I am constructing DOM and serializing into XML using ...
1
vote
1answer
216 views

C++ sax2 parser problem

I want to parse an XML file. My XML looks like this: <?xml version="1.0"?> <?xml-stylesheet type="text/xsl" href="configuration.xsl"?> <!-- Put site-specific property overrides in ...
1
vote
1answer
253 views

When calling XMLPlatformUtils::Initialize() on Xerces?

I'm using Xerces and references are not very clear about when using Initialize and Terminate. Well, many web sites typically tells you: "Always put your Xerces code between these two lines". But do ...
1
vote
1answer
240 views

xerces-c: DOM xml parsing

I have a question about XML parsing. I was experimenting with a sample program and changed it up a bit to try to understand how parsing works however, I've encountered an output I dont quite ...
1
vote
2answers
383 views

Statically linked xerces 3.0.0 does not work while dynamic works on Linux

So I am trying to statically link Xerces 3.0.0 on linux. I did it already with dynamic link and it works, but in order to avoid dependancy I want to do it statically. I changed all of the make files ...
1
vote
1answer
365 views

Xerces-C: Migration from v2.x to v3.x?

I would like to migrate a project (legacy code which I am not quite familiar with) from Xerces-C v2.x to v3.x. It turns out that Xerces-C v3 dropped the DOMBuilder class. The migration archive tells ...
1
vote
3answers
584 views

linking/version problem with libxerces-c

I am trying to make an example of a toolkit work, but after typing make, I got the following error: g++ -o taskintro taskintro.o `PKG_CONFIG_PATH=/usr/local/lib/pkgconfig pkg-config ...
1
vote
1answer
174 views

Building xerces using -icu

is any body aware of building xerces using icu library , when i am building it giving all icu related option on MacOS its never going for icu option ( it finally says ICU option can not be enabled in ...
0
votes
1answer
30 views

removing unwanted nodes using xerces-c

i am using xerces 2.8.0. I want to delete the comment nodes from the document. List = root->getChildNodes(); int count = List->getLength(); int i = 0; while (i < count) { DOMNode* node = ...
0
votes
1answer
28 views

What is the difference between DOCUMENT_NODE, DOCUMENT_TYPE_NODE and DOCUMENT_FRAGMENT_NODE?

Can any one explain to me what is the difference between DOCUMENT_NODE, DOCUMENT_TYPE_NODE and DOCUMENT_FRAGMENT_NODE in Xerces-C.
0
votes
1answer
23 views

Xerces-C: Parse Javascript inside of HTML

I want to parse websites for their meta tags. For this I use xerces-c. shared_ptr<SAX2XMLReader> parser(XMLReaderFactory::createXMLReader()); //Create and set callback handler with the given ...
0
votes
1answer
28 views

Migration from xerces v1 to xerces v3.1.1

I have to migrate my project from xerces 1 to xerces 3.1.1 but I can't find DOMString.hpp. Does someone have an idea where I can find this class?
0
votes
1answer
86 views

Segmentation fault when calling getDocument using xerces for c++

Good day. I have parser.h a sample.cpp(as parent node) and main.cpp. Im getting segmentation fault in getting getDocument. Can someone help me... Here's my code: parser.h int Parser::Load(const ...
0
votes
0answers
27 views

Windows GCC 4.6 with XercesC error when throwing an exception

I'm currently using MinGW with a gcc 4.6 (nuwen distribution, also tried another one) and whenever an exception is about to be thrown in my application, the application crashes and I only get this: ...
0
votes
1answer
102 views

SAX2 (Xerces-C): How to get the line number of parsed tags?

I parse an XML file in C++ using the SAX2 api of Xerces-C. So I do implement the DefaultHandler interface and its functions void startElement( const XMLCh* const uri, const XMLCh* ...
0
votes
1answer
61 views

How to generate a minimal allowed document using Xerces-C?

I haven't find how to create a default document from XML Schema in Xerces-C documentation. Still I've tried the following: const char XMLLinesSchema[] = /* some valid schema */; MemBufInputSource ...
0
votes
1answer
15 views

Java XML and doctype with '\' in path

I have a problem with the Java and Xerces parser on Windows. I have a file prepared by another group of developers and they use backslashes in the DTD file path. The path begins with backslash and it ...
0
votes
1answer
74 views

SAX Api for C++ to read element name and value from XML file?

Can anyone tell me how can I get a tag name and tag value using the SAX API in Xerces-C++ v2.8.0?
0
votes
1answer
50 views

How to remove a child node from an XML file in C++ using Xerces-C?

root = doc->getDocumentElement(); child=root->getLastChild(); DOMNode* removedElement = root->removeChild(child); removedElement->release(); The child is getting newline ...
0
votes
0answers
60 views

Reading attributes of an XML file in C++ using Xerces-c?

I am not able to get the attributes of DOMNode objects. DOMNamedNodeMap* att = currentDOMNode->getAttributes(); const XMLSize_t c= att->getLength(); for (int i=0; i<c; i++) { ...
0
votes
0answers
64 views

How can I use Xerces to validate an XML instance file that extends a schema through the 'any' element?

I have two XML Schemas: One that allows extension through the use of the 'any' element, and one that defines an element heirarchy to be used in place of that 'any' element. Base Schema fragment: ...
0
votes
0answers
41 views

Create a character reference in xercesc dom?

I have a xercesc::DomDocument. When I serialize (print) it, I would like to have \r (carraige return) characters be encoded using a character reference (&#xD;). I tried to accomplish this by ...
0
votes
1answer
86 views

Xerces-c assertion error

I have downloaded and built Xerces-c on linux: Linux xxxx 2.6.24.7-server-3mnb #1 SMP Wed Sep 9 16:34:18 EDT 2009 x86_64 Intel(R) Xeon(R) CPU 3065 @ 2.33GHz GNU/Linux Created the simple ...
0
votes
2answers
162 views

DOMDocument C++ memory management

Question about DOM* class createXXX methods in C++. Do I have to do anything special to free memory returned from DOM* createXXX methods? For example (the transcodes were removed for simplification ...
0
votes
0answers
174 views

Axis C++ Calculator sample not working on Linux

I have followed the calculator sample tutorial and cannot get the the calculator client working, the problem appears on the server side. I am working on Linux, I am using: Axis C++: ...
0
votes
1answer
350 views

Read Write XML File In C++

I researched a lot on how to read and write ( update ) a simple .xml file in C++ but i am not able to develop the code for it. I work and installed xerces-c library that I think is needed to use DOM ...
0
votes
3answers
222 views

Static linking issue on Solaris sparc

Undefined symbols Error while statically linking xerces with application only on solaris sparc, whereas static linking on other platforms(Linux, HP-UX,Solaris-x86) working. Here are errors. ...
0
votes
1answer
130 views

Adding a stylesheet declaration in my xml using Xerces-C

I have an application in c++ using Xerces-C as main xml manipulation library. I have my DOMDocument* and my parser and I want to set declarations. I do the following: ...
0
votes
1answer
512 views

Passing from a DOMNode* to a DOMElement* in Xerces-C

I have a c++ application that manipulates xml. Well, at a certain point of my application I get a DOMNode* and then I attach it to an element as a child. Well the problem is that I would like to add ...
0
votes
1answer
118 views

Convert QString to a Xerces string

I want to convert a QString to an XMLCh const * to be used by Xerces-C++. The former can be "transformed" to a NUL-terminated const ushort * in host byte-order in (I think) O(1) time. The latter is ...
0
votes
1answer
265 views

Attaching a Xerces-C DOMElement from a Xerces-C DOMDocument to another one

I questioned before about a similar problem in RapidXml, I want to know, now, the same but using Xerces-C. I am working on a c++ application that needs to parse xml. Consider the following: xml ...
0
votes
1answer
117 views

Printing an XML Document in Xerces-C

My problem is simple. I have a XercesDOMParser, so I can access through getDocument() to the DOMDocument stored in it. I want to get the xml string representing the tree. What is the correct call? I ...
0
votes
1answer
380 views

C++ Xerces-c: Initializing a shared_ptr

I am new to shared pointers and was wondering how to initalize a shared pointer if it is also a member variable? Currently my code looks something like this: In the header file, I have: class ...
0
votes
1answer
538 views

Xerces-c: XML file validation with xsd file c++

I am attempting to use Xerces-c. I have a .xsd scheme and want to use it to to validate an XML file. I've define the xsd file and an error handler, but for some reason the xsd is not throwing errors. ...
0
votes
1answer
225 views

DOMDocument to string xerces-c

I have a parsed an XML document with xerces-c and can successfully write it to a file like the DOMPrint example, but I can not store this in an array. I see online that I should still use a ...
0
votes
1answer
89 views

Where can I find static Xerces 3.0.0 lib for AIX

I got the binaries from the xerces apache site but they only have dynamic lib. I am wondering why they do not include static version of the lib? And is there a place to get static Xerces 3.0.0 for ...
0
votes
1answer
351 views

Xerces C++ XML: escape is really hard to do?

I am using Xerces library, everything is fine to use but now I want to escape the XML string and I found there is a XMLFormatter class used for that, after I dig into the doc, I see it is really hard ...
0
votes
1answer
192 views

Caching XSD schema to reuse in several XML DOM parser tasks in Xerces

How can I cache an XSD schema (residing on disk) to be reused when parsing XMLs in Xerces (C++)? I would like to load the XSD schema when starting the process, then, whenever I need to parse an XML, ...
0
votes
1answer
966 views

Validating document in Xerces C++

I want to load an XML document in Xerces-C++ (version 2.8, under Linux), and validate it using a DTD schema not referenced from the document. I tried the following: XercesDOMParser parser; ...
0
votes
3answers
974 views

xerces-c 2.8 : error while loading shared libraries

I'm trying to compile a program running on an HP UX server on a Red Hat Linux. It uses xerces-c library to parse xml files. Compilation is ok, but when i try to run it, I get the following message ...
0
votes
2answers
752 views

How do I install XML::Xerces?

Please see Part 2 which list latest errors while installing module continued post. Normally when I try to install XML::Xerces CPAN module using standard cpan> install XML::Xercers than I get ...
0
votes
2answers
2k views

XPath support in Xerces-C

I am supporting a legacy C++ application which uses Xerces-C for XML parsing. I've been spoiled by .Net and am used to using XPath to select nodes from a DOM tree. Is there any way to get access ...