Tagged Questions

Rapidxml is a general purpose XML parser for C++ designed for execution speed and practical usage. It can also modify nodes and output a full xml document.

learn more… | top users | synonyms

4
votes
2answers
2k views

c++ rapidxml node_iterator example?

I just started using rapidXML since it was recommended to me. Right now to iterate over multiple siblings i do this: //get the first texture node xml_node<>* texNode = ...
4
votes
6answers
5k views

C++: How to extract a string from rapidxml

In my C++ program I want to parse a small piece of XML, insert some nodes, then extract the new XML (preferably as a std::string) RapidXML (http://rapidxml.sourceforge.net/) has been recommended to ...
3
votes
3answers
2k views

How to parse the XML file in RapidXML

I have to parse a xml file in C++. I was researching and found rapidxml library for this. I have doubt about "doc.parse<0>(xml)" can xml be .xml file or it needs to be a string or char *? If ...
3
votes
1answer
493 views

How to fix RapidXML String ownership concerns?

RapidXML is a fast, lightweight C++ XML DOM Parser, but it has some quirks. The worst of these to my mind is this: 3.2 Ownership Of Strings. Nodes and attributes produced by RapidXml do not ...
2
votes
1answer
100 views

Strange Exceptions using RapidXml under Windows CE 6.0/Windows Mobile/Windows Embedded Compact

I'm having a very strange problem when trying to run RapidXml 1.13 under Windows CE 6.0 compiled with Visual Studio 2005. I have an extremely small program that fails to run: #include ...
2
votes
3answers
361 views

rapidxml parse error with url attribute

I'm getting a strange error with rapidxml when parsing a xml file like <?xml version="1.0" encoding="UTF-8"?> <IMG align="left" src="http://www.w3.org/Icons/WWW/w3c_home" /> It throws ...
2
votes
1answer
175 views

Is RapidXml thread safe?

The documentation for RapidXml says Pool maintains RAPIDXML_STATIC_POOL_SIZE bytes of statically allocated memory. Until static memory is exhausted, no dynamic memory allocations are done. ...
1
vote
1answer
99 views

Error handling: distinguishing between 'fatal' errors and 'unexpected input' errors

I've been working on a program that reads in an XML file, and if ifstream is unable to open the file, it will throw std::ifstream::failure. This exception is thrown whenever std::ifstream::failbit is ...
1
vote
2answers
74 views

Proper choice of file stream objects

Application uses RapidXML to edit XML file. Editing is not automated and takes place occasionally: XML content is displayed in GUI and user performs some actions which change XML. Each change must be ...
1
vote
2answers
286 views

RapidXML throwing a parse_error exception

When I try to parse a simple .xml file using the RapidXML framework, it throws a parse_error with this cause: "expected <". Now this is practically my first time writing XML code, so it might be a ...
1
vote
3answers
752 views

rapidxml: how to iterate through nodes? Leaves out last sibling

Using rapidxml I'm wanting to loop through a set of nodes, and am using what I found to be the best way to do this (from trusty stackoverflow, the doc doesn't appear to have an example of iteration): ...
1
vote
2answers
287 views

Rapidxml is not compiling on Visual Studio 2010. What am I doing wrong?

I am working on switching XML parsers from TinyXml to RapidXml in our codebase. However, RapidXml does not seem to compile with Visual Studio 2010. Basically, in the header file I am doing #define ...
1
vote
2answers
420 views

How to insert a new node in a xml_document using RapidXml for C++ using strings?

std::string src = "<xml><node1>aaa</node1><node2>bbb</node2><node1>ccc</node1></xml>"; std::string src2 = "<nodex>xxx</nodex>"; I want to ...
1
vote
2answers
216 views

compile rapidxml under linux with g++

The following simple program can't be compiled with gcc 4.4.3 #include "rapidxml.hpp" #include "rapidxml_utils.hpp" #include "rapidxml_print.hpp" #include "rapidxml_iterators.hpp" int main() { ...
1
vote
1answer
162 views

Cloning rapidxml::xml_document

How do I get a complete copy of a RapidXML xml_document? There is a clone_node function; how to use to to create a complete copy of an existing document?
1
vote
3answers
343 views

Why does MapViewOfFile return an unusable pointer for rapidxml?

As suggested: I have a file which is larger than 2 giga. I am mapping to memory using the following function: char* ptr = (char*) MapViewOfFile( map_handle, FILE_MAP_WRITE | FILE_MAP_READ, 0, ...
1
vote
3answers
1k views

Compilation errors with RapidXML

I am novice to rapidXML but first impresion was not positive, I made simple Visual Studio 6 C++ Hello World Application and added RapidXML hpp files to project and in main.cpp I put: #include ...
0
votes
1answer
61 views

RapidXml and memory pool

Using RapidXML I need to create and destroy a lot of XML nodes and XML attributes. I read in memory pool documentation that there is not a way to free a single string created in memory pool with ...
0
votes
0answers
74 views

RapidXML is throwing exception

ifstream fin("tree.xml"); if (fin.fail()) return 1; fin.seekg(0, ios::end); size_t length = fin.tellg(); fin.seekg(0, ios::beg); char* buffer = new char[length + 1]; ...
0
votes
0answers
37 views

How to generate a xml-stylesheet declaration using RapidXML?

I know how to generate a regular xml header () but I don't see how to generate specifically a xml-stylesheet declaration. Has anyone out there done it before? Googling the question yielded nothing ...
0
votes
1answer
82 views

How to iterate an xml file and store it in map

How to iterate an file using rapidXml and store it in a map... Something like creating a dictionary using the contents of file. I have tried this but i can get only the first level of key-value pairs ...
0
votes
1answer
494 views

RapidXML reading from file - what is wrong here?

What's the difference between these two methods of reading an input file? 1) Using 'ifstream.get()' and 2) Using a vector<char> with ifstreambuf_iterator<char> (less understood by ...
0
votes
1answer
245 views

recursion problem in parsing with RapidXML/C++ class pointers side-effect

I want to share this odd but interesting situation I stumbled upon recently while trying to use RapidXML for XML parsing in C++. I wanted to write a recursive function to search and return a ...
0
votes
4answers
154 views

Strange code breaks build in MSVC. What does it mean?

I am trying to include rapidxml into my current project. However, it would not build. Visual Studio would complain about this piece of code (rapidxml.hpp:419+451): 419: void *memory = ...
0
votes
3answers
343 views

Trying to understand RapidXml memory allocation

I'm using RapidXml in a c++ program. Well ok no problem it works. I just do not understand why I must use pointers instead of variable values... If you take a look to the RapidXml wiki page, some ...
0
votes
2answers
326 views

Add number (double/float) as attribute to RapidXML node

I'm pretty new to RapidXML. I want to construct an Xml document and print it to a file. Everything works but I'm not sure if I'm doing one part of the process right: Adding an attribute to a node ...
0
votes
1answer
271 views

Rapidxml and UTF8

I am using RapidXML, but I need to write my strings as UTF8, in Rapidxml Manual was explained it supports UTF8 , please tell me how can I use it via C++ ISO ?
0
votes
1answer
311 views

is there is any way to get xml value by tag in rapid xml using c++

is there is any way to get the value of tag by its tagname in rapidxml using c++ <?xml version=\1.0\ encoding=\latin-1\?> <book>example</book> <book1>example1</book1> ...
0
votes
2answers
702 views

RapidXML XML parse error

I'm parsing an XML file which is quite simple: <?xml version="1.0" encoding="utf-8"?> <catalog> <book id="bk101"> <author>Gambardella, Matthew</author> ...
0
votes
1answer
182 views

bug of RapidXML when the value of a xml node is null

If the value of node in the xml is null, when we print the xml node, the node has no start tag, but only the end tag. For example: xml_document<char> doc; ...
0
votes
1answer
115 views

Removing RapidXML newlines & whitespace in output

How can I prevent RapidXML from adding tabs and newlines between element tags when calling the print(...) function to output XML?
0
votes
3answers
2k views

RapidXML, reading and saving values

I've worked myself through the rapidXML sources and managed to read some values. Now I want to change them and save them to my XML file: Parsing file and set a pointer void ...