Tagged Questions
TinyXML is a simple, small C++ XML parser and generator library.
8
votes
3answers
2k views
How does the UTF-8 support of TinyXML work
I'm using TinyXML (http://www.grinninglizard.com/tinyxml/) to parse/build XML files. Now according to the documentation (http://www.grinninglizard.com/tinyxmldocs/) this library supports multibyte ...
5
votes
5answers
429 views
Should I use XPath or just DOM?
I have a bunch of hierarchical data stored in an XML file. I am wrapping that up behind hand-crafted classes using TinyXML. Given an XML fragment that describes a source signature as a set of ...
4
votes
1answer
113 views
pugixml vs tinyxml
Short question: any comments on comparison of pugixml and tinyxml please?
Details
I need to use an XML parser/writer. My software is written in C++.
It seems to me TinyXML and pugixml are both good ...
4
votes
5answers
5k views
TinyXML: Save document to char * or string
I'm attempting to use TinyXML to read and save from memory, instead of only reading and saving files to disk.
It seems that the documnent's parse function can load a char *. But then I need to save ...
3
votes
2answers
61 views
Specialisation of function template in another class/namespace?
NOTE: This question is only loosely related to tinyxml, however including details like that may help illustrate the concept better.
I have written a function template that will iterate through a ...
3
votes
1answer
108 views
Write XML to txt file with TinyXml
I have a simple XML file but large. Let's say
<products>
<product_id>98667</product_id>
<name>Hiking Boots</name>
...
3
votes
1answer
98 views
When TinyXML visitor function returns false, why does it stop parsing siblings?
We have adopted Tiny XML as our XML parser. I am writing code to grab palettes out of an XML file, and wrote a visitor function like this:
PALETTE_PARSER::VisitEnter( const TiXmlElement& ...
3
votes
2answers
462 views
TinyXML #include problem… Using libraries
Hey, i'm really trying to get TinyXML to at least read a file but it says "main.cpp:8: error: ‘TiXMLDocument’ was not declared in this scope"
This is the code im using:
TiXMLDocument("demo.xml");
...
3
votes
3answers
427 views
Runtime error with tinyXML element access
yester day was my first attempt. I am trying to catch the variable "time" in the following "new.xml" file
<?xml version="1.0" standalone=no>
<main>
<ToDo time="1">
<Item ...
3
votes
2answers
372 views
load XML from variable, not File
I'm trying to parse XML data stored in a variable, not a file. The reason for this is that program x replies to program y in XML, so it would seem to be best to directly parse the XML from the ...
2
votes
3answers
413 views
tinyxml c++ using TiXmlText in storing integer data
as per the class reference the TixmlText takes const char* values as input.
i need to store integer data read from a text file into xml. the integer data is stored in int vector and each element of ...
2
votes
2answers
219 views
Can an tinyxml someone explain which characters need to be escaped?
I am using tinyxml to save input from a text ctrl. The user can copy whatever they like into the text box and it gets written to an xml file. I'm finding that the new lines don't get saved and neither ...
2
votes
2answers
361 views
TinyXML Debian Installation
Can someone give me some instructions on how to install TinyXML (or TinyXML++) to debian so I can use it from within my C++ app.
I've never installed a library before so I have no idea what to do.
...
2
votes
1answer
94 views
TinyMCE disallow HTML TAGS on startup
I am using TinyMCE and I notice that as soon as you input data in it,
TinyMCE warp this content it in a HTML TAG in my case p.
I wold like change this Beauvoir and disallow TinyMCE to insert any ...
2
votes
1answer
257 views
Using TinyXML over a byte stream instead of file
Is it possible to use TinyXML over a byte stream instead of a file?
Consider this code snippet:
TiXmlDocument doc("abc.xml");
if (!doc.LoadFile())
return;
TiXmlHandle hDoc(&doc);
The above ...
2
votes
1answer
1k views
Can TinyXml load Xml from string instead of file?
I'm using TinyXml library for my application but TiXmlDocument object just only can load Xml file. How can it load Xml from string. Could you tell me the way to do this. Thank you very much
Tu.
2
votes
1answer
486 views
TinyXML can't read its own file
I'm currently working on a C++ MFC project on visual studio 2003. The aim of this project is to be able to take an XML file containing language data, convert it to a simple CSV file and back to XML. ...
2
votes
2answers
903 views
What memory management do I need to cleanup when using TinyXml for C++?
I'm doing the following with TinyXml:
TiXmlDocument doc;
TiXmlDeclaration* decl = new TiXmlDeclaration( "1.0", "", "" );
TiXmlElement* main = new TiXmlElement("main");
TiXmlElement* header = new ...
2
votes
2answers
3k views
How to use TinyXml to parse for a specific element
I would like to parse a group of elements out of a TinyXml output. Essentially, I need to pick out any port element's "portid" attribute of the port has a state of "open" (shown below for port 23).
...
2
votes
3answers
580 views
Odd behavior from TinyXML++
Hoping some of you TinyXML++ people can help me out. Really, since you recomended to me before I think you owe me ;)
I have the following code:
//ticpp::Iterator< ticpp::Element > child( ...
1
vote
1answer
30 views
Tinyxml Set Attribute
I have not idea what I am doing wrong. I am writing a simple program in C++ to edit a xml config file using TinyXml.
Here is my config file:
<?xml version="1.0" encoding="UTF-8"?>
...
1
vote
0answers
129 views
how to free memory when using TinyXML?
I am looking over leak memory. I am working with Valgrind and i have some errors like:
Invalid read of size 1
==6643== at 0x4026CC4: strlen (mc_replace_strmem.c:282)
==6643== by 0x40D42DA: ...
1
vote
1answer
90 views
Modify a document with TinyXML
Right now, I save my data by simply rewriting the file requested by the user. The way my xml is structured is like this:
Skeleons root
Skeleton with string name attribute
bone with ...
1
vote
1answer
64 views
Programmably created tinyxml xml file not loading in Internet Explorer
All of the examples I followed for tinyxml resulted in xml files that I was able to view in Internet Explorer.
However, when I programmably created mine, nothing showed in IE. I can confirm however ...
1
vote
1answer
176 views
What is this (0x01000000) and how do I store it?
So I've created an XML file that will configure an application that has already been built. Up until now, it was hard-coded with constants that represented offset values in flash memory.
enum {
...
1
vote
3answers
396 views
Parsing XML Elements using TinyXML
UPDATE: Still not working :( I have updated the code portion to reflect what I currently have.
This should be a pretty easy question for people who have used TinyXML. I'm attempting to use TinyXML to ...
1
vote
2answers
164 views
TinyXML parsing a string in XML format returns NULL?
I'm trying to use TinyXML to parse a string with XML format. But the return pointer is always NULL. I'm not sure which part of code is setting wrong.
TiXmlDocument docTemp;
const string strData = ...
1
vote
2answers
268 views
Why deleted memory is unavailable to use? C++
I have a 200 MB XML file that I am loading using TinyXML. My problem is that when the TinyXML object is destroyed, the memory it used will not be reused. I have used a memory leak detector that I have ...
1
vote
0answers
84 views
What is the earliest version of TinyXML that correctly translates character entities?
According to TinyXML documentation, the latest version of the software correctly translates the standard five XML character entities (&, ", ', >, <) into their human-readable ...
1
vote
3answers
159 views
Why is this loop only running once?
Why is this loop only running once?
noteDatabaseItem just takes a node and fills in the data. the xml has 3 notes in it.
XML:
<?xml version="1.0" encoding="utf-8"?>
<noteCollection>
...
1
vote
1answer
473 views
Compiling libraries with CMake under Cygwin
I have been trying to compile TinyXML using CMake as a sort of mini project, trying to learn CMake. As an addition I am trying to make it compile into a dynamic library and install itself so it works.
...
1
vote
1answer
313 views
Tinyxml Multi Task
I have a single xml file and every new thread of the program (BHO) is using the same Tinyxml file.
every time a new window is open in the program, it runs this code:
const char * xmlFileName = ...
1
vote
2answers
152 views
How to best save XML files
I have a bunch of classes that each read in their values from an XML file using TinyXML.
I've done this so everything is in memory, and my user is using the app and making changes. If the user ...
1
vote
2answers
4k views
How to create separate library for include in C++/Eclipse
I've gotten some C++ code to work with the TinyXML parser. However, to do this I had to include the source code from TinyXML with my regular source code. I'd like to have TinyXML included as a ...
1
vote
1answer
550 views
Getter and setter wrappers for TiXmlElement*'s
I am rewriting a project so that it uses getters and setters to reference the TiXmlElement *'s
However, I quickly run into problems that seem to be related to debug mode:
Ecxerpt from my class's ...
0
votes
3answers
33 views
tinyXML lib cannot read ‘&’ properly
I have an XML file with some lines like the following:
<rule pat="&&&&&&&&&&&&&&&(?<B>B) ?(?<AND>&) ?(?<E>E)">
...
0
votes
1answer
51 views
TinyXML Compilation - Visual C++ (Pocket PC)
I'm struggling to get TinyXML working in my Visual C++ Project.
I'm trying to create a Windows Mobile 5.0/CE application reading a XML configuration file.
I use the Pocket PC 2003(ARMV4) architecture ...
0
votes
1answer
65 views
How to speed up when load a larger file use Loadfile() in Tinyxml
In my project I need append new data to a xml, so I do it like below:
the question is the LoadFile() funcation is so slowly when the xml file is large, and high-cpu, the SaveFile() have same problem. ...
0
votes
0answers
66 views
Error with libxml library in tree.h file “error: expected identifier”
Project for ios 4.3. I wanna add TinyXML library. I made it using instructions, then i had added line into source and received compilation error:
...
0
votes
1answer
66 views
TinyXml append to xml file
I have been working on a project for a few months now and my main issue i am having right now is appending to an xml file. I can create the files no problem. But i want to be able to add more data. ...
0
votes
1answer
87 views
Can't include TinyXML in C++/CLI project
I have a C++/CLI project, and I want to include TinyXML.
I downloaded the library, added it as a a new project to my solution and added a reference from my project to the library.
In my code I have
...
0
votes
1answer
44 views
How to handle tinyxml null pointer returned on GetText()
TiXmlElement *pElem;
std::string StatusResponse;
pElem = hResponse.FirstChild("StatusResponse").Element();
if (pElem)
StatusResponse = pElem->GetText();
If pElem is valid but the element ...
0
votes
2answers
33 views
How to print attributes on each separate line with TinyXml
I'm using TinyXML for creating XML documents in C++.
I would like to see 1 attribute per line in the output documents, like this:
<root a="1"
b="2"
c="3" />
instead of what ...
0
votes
2answers
35 views
TinyXml and Strings
I'm trying to read an xml file's attributes where I'm storing information. I need to retrieve that information in the form of strings and I'm unable to do that since I cant find any tinyXml method ...
0
votes
1answer
108 views
How to paste xml to C++ (Tinyxml)
I'm currently working on a project in C++ where I need to read some things from a xml file, I've figured out that tinyxml seams to be the way to go, but I still don't know exactly how to do.
Also my ...
0
votes
1answer
58 views
How do I get the name of a tag in TinyXML?
For example:
test.xml
<fruit taste="good">whatever</fruit>
How can I get the name-string of the tag "fruit" (which would be "fruit" of course) using TinyXML?
0
votes
0answers
21 views
How to prevent getting entities (< etc.) when using TInyXML?
I'm using TinyXML to build up a document, and by constructing it bit by bit by linking TiXmlElements and TiXMLTexts everything builds up fine.
However, problems occur if I try to build it up in ...
0
votes
1answer
217 views
TinyXml Parser refuses to load file properly
I have the following xml file:
<?xml version="1.0" ?>
<Hello>World</Hello>
Which is located in the very same directory as all my other files.
And I use this source file method to ...
0
votes
0answers
139 views
TinyXML vs LibXML2
TinyXML vs LibXML2 ?
I’m using TinyXML at the moment but heard LibXML2 was better? - I need something lightweight, its to run on an embedded Debian (arm based) device. I have just been told I now ...
0
votes
1answer
36 views
error at tinyxml when deserialize
I have the following xml:
<Name />
<Sur> mmm </Sur>
When I deserialize I wrote:
TiXmlElement* section;
section=handle.FirstChild("Name").ToElement()
if (section) {}
The problem ...