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

0
votes
1answer
12 views

rapidxml comparing node values (testing values)

Im new to radidxml, I cant find a way to compare a node value to string. The only way I can figure out is to print it to a string, then test that value. if (cell_node->first_node("text:p")) { ...
0
votes
4answers
66 views

!strcmp as substitute for ==

I'm working with rapidxml, so I would like to have comparisons like this in the code: if ( searchNode->first_attribute("name")->value() == "foo" ) This gives the following warning: ...
-1
votes
0answers
28 views

Rapidxml doesn't want to parse a file

I'm using the following code to parse an XML-file that I found here: xml_document<> doc; xml_node<> * root_node; // Read the xml file into a vector ifstream theFile ("Test1.xml"); ...
-1
votes
1answer
103 views

Program halt when constructing std::string

In the following code, when constructing the string url, the execution halts. No error, the execution doesn't stop, it just hangs there, and I can't press step over. Everything seems fine in the ...
0
votes
0answers
64 views

Parsing an XML tree with RapidXML and discarding unwanted nodes

I am interested in using RapidXML to parse an XML tree; however, this XML has several layer of rows that I do not need. This is because it is a representation of a genetic tree and many layers are ...
0
votes
1answer
76 views

Parsing XML inOrder C++

This is related to one of my previous questions. I'm trying to build a tree from an xml file. I plan to go through the xml file and create objects out of the data and create a vector of the objects in ...
1
vote
2answers
245 views

Building a Tree from XML File using RapidXML and c++

For a project for my c++ class, I am supposed to parse and xml file and build a binary tree from it. The file is much more dense than this but the layout is as follows: <?xml version="1.0" ...
0
votes
1answer
94 views

Compiling errors using RapidXML in C++ using Dev C++

I am parsing an XML file for my C++ project in Dev C++ and I have the following code in the rapidxml_iterators.hpp file: typedef xml_node<Ch> value_type; typedef xml_node<Ch> ...
1
vote
1answer
169 views

Parsing an XML file in C++ using RapidXML with Dev C++

So I have to parse an XML file for my C++ project in class and I'm using RapidXML. The rapidxml_iterators.hpp file is giving me some troubles. I'm using Dev C++ by the way At first, I had the ...
0
votes
1answer
71 views

C++ RapidXML get sibling of the same type?

So, in RapidXML, I'm trying to loop through my file to get the data from some tileset nodes: rapidxml::xml_node<> *root_node = doc.first_node("map"); for(rapidxml::xml_node<> *tileset = ...
1
vote
2answers
46 views

Errors with returning datatypes other than char* from XML-file using C++

It's my first time using XML and I am currently trying to return an integer (actually want to return a double but haven't got that far yet) from an XML-file using C++. I'm using RAPIDXML and the ...
0
votes
1answer
131 views

C++ RapidXML - Edit values in the XML file

I recently started using RapidXML, and parsing the values is fine (I can get the data from inside the elements), but I want to edit the values inside of the elements. For the purposes of this ...
0
votes
0answers
71 views

How to parse my xml file(node order is dynamic) using rapidxml?

<root> <scene> <descriptions dialogue="test1" audionotes="test3" /> <graphics> <image gid="image1" img_data="test" xposition="100" ...
0
votes
1answer
86 views

rapidxml first_node doesn't return null

I'm trying to parse a XML file using RapidXML in C++, the file is like: <root> <a> <b>1111</b> <c> <d1>2222</d1> ...
0
votes
1answer
70 views

rapidxml unexpected type alloc_func

I am using rapidxml to parse and create xml-files in my projects. Problem is that in one project it worked fine, and in another I got rapidxml.hpp(385): error C2226: syntax error : unexpected type ...
0
votes
1answer
316 views

RapidXML print header has undefined methods

I've been messing with using RapidXML on one of my projects. It was all going so well until I decided to use it for writing out xml. My code is more or less as follows: //attempt to open the file for ...
2
votes
2answers
124 views

How do I read nested xml using rapidxml

I am trying to use RapidXML to parse xml content that looks like this: <?xml version="1.0" ?> <!DOCTYPE open-psa> <open-psa> <define-gate name="top" > <or> ...
1
vote
0answers
135 views

RapidXml attribute 100 character limit

I am trying to parse an .x3d document using RapidXml. Unfortunately, it only gives me the first 100 characters of any node attribute. I looked through the documentation, and it looks like there ...
3
votes
1answer
315 views

Traversing a simple DOM Xml document using RapidXML

Alright guys, so Im using rapidXML to parse a very simple XML document. All I am trying to do is parse the data from the xml document into my own custom data structure. As a starting point, I'd like ...
0
votes
0answers
77 views

Xml node contains garbage; apparent heap corruption after call to png_get_data()

Of course it may be my own code that's at fault (it usually is), but Pnglite isn't a very mature or widely used library so it's possible the problem resides there. The problem is as follows: I have ...
0
votes
0answers
57 views

Compiling errors under XCode

I am trying to compile a project under XCode that uese rapidxml (a c++ free xml reader). The same project compiles without problems under Visual Studio, but XCode gives me the following error, related ...
-1
votes
1answer
99 views

How to read information from a XML file c++ [duplicate]

Possible Duplicate: rapidxml: how to iterate through nodes? Leaves out last sibling Im trying to reas some information from a XML file using rapidXML but cant get it to work. The XML file ...
1
vote
1answer
189 views

Navigating along rapid.xml nodes

This question slightly differs from check for variable number of sibling nodes & different siblings in Rapidxml. In most of the examples I have found on the web I see hard coded keys, for example: ...
0
votes
3answers
159 views

Rapidxml: adding subtree directly as value

I'm trying to append a very big subtree using rapidxml in a dirty way, exploiting the value method rapidxml::xml_node<>* node = allocate_node(rapidxml::node_element, "tree"); ...
0
votes
1answer
175 views

rapidXML parsing misbehavior

I'm trying to parse a xml file: <?xml version="1.0"?> <settings> <output>test.dat</output> <width>5</width> <depth>4</depth> ...
0
votes
1answer
157 views

RapidXML NULL Pointer

I'm getting values of my config file with rapidXML in a kindly bad way. xml_document<> doc; doc.parse<parse_full>(buffer); int a = ...
0
votes
1answer
61 views

Storing class members as RapidXML data types

I'm having an issue with storing member variables that are of RapidXML datatypes. I also experience this problem with member functions' return types. Only in the class' file header to I experience ...
0
votes
1answer
151 views

Rapidxml is writing wrong characters

I've been using Rapidxml lately and have faced following problem. When I try to add attributes, which are not hardcoded, but generated during program runtime rapidxml inserts wrong characters. Here ...
1
vote
1answer
397 views

Input from xml file and parsing using rapidxml

I am trying to do something like this using rapidxml using c++ xml_document<> doc; ifstream myfile("map.osm"); doc.parse<0>(myfile); and receive the following error Multiple ...
1
vote
1answer
171 views

check for variable number of sibling nodes & different siblings in Rapidxml

I am using Rapidxml in c++ to read in a xml file I have two questions based on the following example <?xml version="1.0" encoding="utf-8"?> <rootnode version="1.0" type="example"> ...
1
vote
3answers
221 views

RapidXML weird parsing

I have a very annoying problem and I'm trying to solve it for lots of hours. I'm using rapidXML with C++ to parse an XML file: xml_document<> xmlin; stringstream input; //initialized somewhere ...
2
votes
1answer
381 views

RapidXML compilation error parsing string

I have been having some trouble using RapidXML to parse a string. I receive an error from within Eclipse claiming the parse function does not exist. make all Building file: ../search.cpp Invoking: ...
1
vote
1answer
108 views

rapidxml - overwriting previous xml_nodes

I just started using rapidxml. I 1st create an xml file to read from. Worked so fast an easy. This is what I manual crated. <?xml version="1.0" encoding="utf-8"?> <GPS> <Path> ...
2
votes
1answer
96 views

Maybe bug in rapidxml - but I'm not sure how to fix

I noticed the rapidxml parses illegal <<element/> to an element named <element, instead of producing an error. I think the problem is the definition of lookup_node_name. The comment is ...
0
votes
1answer
166 views

Weird result with rapidXml in C++ append_node

I have this class: // XmlWrapper.h class XmlWrapper{ private: xml_document<> doc; public: XmlWrapper(); string addNode( string node_name); string getXmlString(); }; // ...
1
vote
2answers
71 views

Prevent expansion of quotes and other special characters when printing XML using RapidXML

I am using RapidXML to read an XML file, parse it, do some operation and write it back. Any text written in quotes within tag, is printed with quotes in expanded form. Is there any flag that will ...
0
votes
2answers
192 views

Error while parsing Japanese Kanji with RapidXml

I have a problem when I try to parse a xml file containing a specific Kanji: 退 After debugging, I see that the problem is in this function of RapidXml : struct text_pure_no_ws_pred { static ...
0
votes
0answers
164 views

Error while parsing a Xml file with RapidXML

I have a "parse_error" when I try to parse an xml file containing a specific Japanese kanji: 退 If I change this Kanji to another, the parsing works well. Any idea? PS: I parse the file with ...
0
votes
1answer
299 views

RapidXml: cannot get children from XML file

With the following C++ code, using the RapidXml library, I can only get XML elements at the top level, and not the children: char *text = ... // XML file shown below using namespace rapidxml; ...
0
votes
1answer
151 views

Rapidxml causing weird problems

Iam having problem with rapidxml. Code below gives me output: http://pastebin.com/352MxuQY But when I remove loop or "{}" where Iam appending node I get good output: http://pastebin.com/H0YQGwV1 Why ...
2
votes
0answers
177 views

strcpy crashes on larger sizes (iPhone using rapidXML)

I'm following the tutorials for rapidxml on iOS5 and unfortunately my c is a little rusty. The following code works great for smaller char sizes but crashes with EXC_BAD_ACCESS when I pull down ...
-1
votes
2answers
96 views

Can RapidXML API grow the buffer?

Seeing the documentation of XmlDocument::parse(Ch*) in RapidXml, i'm left wondering about the character buffer being 'non const'. I'm not sure how this is going to work in general when the buffer ...
1
vote
1answer
1k views

Looping through a node using rapidxml

I'm new to using XML with C++ and I want to loop through an XML node and print the 'id' attribute of into a vector. This is my XML <?xml version="1.0" encoding="UTF-8"?> <player ...
0
votes
1answer
189 views

rapidXML, corrupted memory when traversing DOM tree

Don't understand what is going on with the attribute's memory and rapidXML. A function encapsulates the xml parsing, if success, returns a reference to the root node, when calling the traverse DOM ...
1
vote
1answer
257 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
1answer
322 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]; ...
2
votes
1answer
272 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
0answers
117 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 ...
2
votes
1answer
185 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 ...
0
votes
1answer
141 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 ...

1 2