Tagged Questions
0
votes
1answer
33 views
Parsing part of XML file
So i am stuck on this for quite some time now. I use libxml2 and it works great for another part in the code but i cant seem to figure this one out and its bugging me like crazy.
I have this xml ...
0
votes
0answers
45 views
Very basic XML parsing in C?
I'm looking for a way to read settings out of an XML file. But most likely, the DOM of the whole XML file will not even fit in memory, and I havent got space left for a full-blown library.
So I was ...
2
votes
1answer
58 views
Binary XML representation and treatment for embedded devices
I'm seeking for an efficient way to handle xml data on a embedded device with heavily limited performance factors (RAM and CPU).
XML has the advantage that it can be easily handled by computer based ...
-5
votes
0answers
47 views
Printing 2 bytes unicode in Unix C [closed]
Can someone tell me how can I print an XML file in UNIX C.
I've already tried using the wide characters to print a UNICODE 2 Bytes with a header of UTF-16. I've also tried putting xFF and xFE in the ...
0
votes
0answers
29 views
XML to C structure definitions
We have a C header file with structures only. No pointers. Some arrays. This is an old legacy file. The task is to convert it to XML from which we can generate the C header file again so it work with ...
0
votes
2answers
52 views
Code Complexity Analysis for c++ on unix which can generate xml output
I am looking for a code complxity analysis tool for c++ which can run on unix and generate output in the form of an xml file.
something like this : http://www.blunck.info/ccm.html
This tool works on ...
-1
votes
1answer
70 views
warning: incompatible pointer types
Following my previous question:
Now I have this:
xml_list *text1(xml_list *);
xml_list *text(xml_list *);
//operation: text1(elem)
xml_list *text1(xml_list *elem){
if(isText(elem)){
return ...
0
votes
2answers
36 views
Error: conflicting types
I am writing code in C for an assignment.
This is the relevant code:
//operation: text(elem)
xml_list *text(xml_list *elem){
if(isEmpty(elem)){
return Nil();
}
return ...
0
votes
1answer
30 views
Is there a possibility for cloning an xmlTextReader (or multi-pass reading)?
I currently have to fix an existing application to use something other than the DOM interface of libxml2 because it turns out it gets passed XML files so large that they can't be loaded into memory.
...
0
votes
3answers
46 views
Segmentation fault while convering large number of xml files into text
#include<stdio.h>
#include<stdlib.h>
#include<dirent.h>
#include<string.h>
int main()
{
FILE *fin,*fout;
char dest[80]="/home/vivs/InexCorpusText/";
char file[30];
DIR ...
0
votes
0answers
68 views
gSoap Create .xml files from soap struct
I'm new in this area and I need to use gSoap at my embedded system.
All things work very well but in my application I must to save a XML response file.
How to convert my response struct in a XML ...
0
votes
0answers
28 views
XML Schema to C data binding
I have a XML Schema and I would like to create a C parser for XML files represented by that XML Schema...is there any way to generate the C code for the parser?
0
votes
0answers
74 views
looking for text format to generate c and python [closed]
For my project I need to generate a source code in python, C, fortran from a text file.
For a file format I choose XML. This format should describe the work flow and variables declared (that GUI part ...
0
votes
0answers
53 views
libxml++ / tinyxml set node inner xml
I have an XML file, and I want to set inner XML of a node.
Let's say XML file looks like this:
<domain name="lala.com">
<answer type="A" data="1.1.1.1" />
<answer type="B" ...
0
votes
0answers
32 views
line breaks in elements of minixml output
I wrote a program that puts out some XML data through miniXML. I know that I can format my output with the Callback function with parameters such as MXML_WS_BEFORE_CLOSE.
But this doesn’t' help me to ...
1
vote
2answers
56 views
Solving undefined reference to 'xmlNewTextWriterFilename' [duplicate]
Possible Duplicate:
What is an undefined reference/unresolved external symbol error and how do I fix it?
I am starting to develop in C and want to use the libxml2 C-Library for writing a ...
0
votes
1answer
76 views
Issue finding a namespaced node in an XML document using libxml2's XPath
Given the following document, I want to extract tns:EchoResponse. (Original document prettified for readability.)
<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope
...
0
votes
1answer
94 views
Parsing EXI using C++ [closed]
I am in need of something for use with C++ which will parse EXI formatted messages. I am not picky in regards to the form of the solution. This could be a Xerces-like library, a rapidxml-like set of ...
0
votes
2answers
76 views
How to make the presentation of minixml data more readble?
I m playing with minixml in my C program. And when I save The minixml tree into a file with the mxmlSaveFile(bkp_tree, fp, MXML_NO_CALLBACK); function I get the whole xml data in one bloc . There is ...
3
votes
0answers
54 views
Convert XML to JSON in C language [duplicate]
Possible Duplicate:
JSON <-> XML in C/C++
Is there a C function or a simple C library to convert XML to JSON?
For example, I would like the function to be able to convert the ...
0
votes
0answers
40 views
c libxml listing specific content
I have an xml file with following content
<?xml version="1.0" encoding="UTF-8"?>
<vm_list>
<vm name="Win2k_SQL2000 (1)" type="VM">53370afc-7b57-360c-a7a1-236f40535064</vm>
...
1
vote
2answers
60 views
Does libxml2 maintain document order?
IIRC, there are two flavours of XML parsers: DOM, and SAX. SAX is required to parse the XML document from top-to-bottom without any form of reordered (and is event-based), whilst DOM I believe is ...
0
votes
1answer
179 views
Parsing xml file with libxml2
I have been trying to parse an xml document by using libxml2, and I am using Dev c++ for compilation. I couldn't figure out how to utilize libxml2/parser.h? I am getting the error
no such file or ...
0
votes
1answer
101 views
Getting junk character in C structure after parsing
I am using a simple xml file.
<COMPANY>
<EMPLOYEES>
<EMPLOYEE>
<NAME>BOB</NAME>
<EMPID>51211</EMPID>
...
0
votes
1answer
74 views
Compare two XMLNodes in C (libxml library)
I'm parsing some xml files in C using libxml library. I want to compare two xmlnodes to see whether they contain the same data or not. Is there any function available to do so?
0
votes
3answers
183 views
Very simple C/C++ XML Parser [duplicate]
Possible Duplicate:
What XML parser should I use in C++?
It is generally required to parse application settings from local XML file under Linux platform and nothing more.
Requirements:
...
2
votes
4answers
135 views
Parsing XML in C without libraries. [closed]
Could anyone give me an overview on process of parsing xml in standalone C with only standard libraries.
I am wanting to work on this as practice and because this is a useful project actually.
...
3
votes
1answer
312 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 ...
2
votes
0answers
97 views
How to delete configured networks using XML provisioning on WM5?
I am trying to delete all configured WiFi networks on a WM5 mobile device. I have the following code but it returns "failure" every time:
LPWSTR ReturnedMessage2 = NULL;
WCHAR deleteAllNetsXml[] = ...
-2
votes
1answer
84 views
Substitution of one type by another [closed]
When we perform substitution, can one type substitute another type?
This is too broad a question because it concerns general concepts of programming rather than specific programming language.
Thank ...
2
votes
2answers
325 views
How to add a xml node constructed from string in libxml2
I am using Libxml2 for encoding the data in a xml file. My data contain tags like "<" and ">". when it is converted into xml these tags are also converted into "<" and ">". Is there any ...
2
votes
3answers
333 views
Creating GUI using XML in C\C++ [closed]
i never actually used XML, someone can recommend me METHOD to create GUI configuration file for C\C++ application.
Recommend me framework or something, because i really dont know how what is best to ...
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
220 views
C code using libxml2 giving compile time errors on cygwin on Win 7 [closed]
I am trying to write a xml parser in C using the libxml2 on cygwin on my Win 7 machine.
When i am trying to compile the code it is giving me compile time errors. Can someone help me out on this.
...
0
votes
2answers
117 views
how to extract data from an xml file as input for my code [closed]
How do i extract data from an xml file and store them into data structures in my code to use them? I might be using java or c for my coding but i need to extract data from an xml file conveniently to ...
0
votes
1answer
160 views
Formal grammar of XML
Im trying to build small parser for XML files in C. I know, i could find some finished solutions but, i need just some basic stuff for embedded project. I`m trying to create grammar for describing XML ...
0
votes
2answers
236 views
Parsing XML data from Sockets using C
I have a client program which sends the XML data to my server program.
The server needs to parse the XML data.
I am using C language with Linux.
Is there any API available to parse XML from sockets ...
0
votes
3answers
95 views
Validate only a part of XML file using an XSD file
Is there a way to validate only a part of XML file using XSD file and ignore the other contents of the XML file. I want to validate only a couple of tags in XML file using XSD file. My XML file ...
0
votes
0answers
33 views
can we create a function to move the cursor to required element while parsing xml files using libxml2 library
I am doing my c project after 6 years, i am so frustrated that i have forgotten my basics. I will try to recollect it, but for the time being i have a problem.
I need to go through the specific ...
0
votes
1answer
237 views
how to parse a xml string instead of xml doc in c using libxml2 library
All the examples in libxml2 documentation libxml tutorial
are mentioned using external xml files,
what if i need to parse a string with xml content in it, is it really possible in libxml2 c library, ...
0
votes
1answer
121 views
how to categorize xml files basing on attributes using libxml2 in c
My assignment is to differentiate xml content in to groups ,
for example
i have two xml files
<?xml version="1.0"?>
<marks>
<firstname>john</firstname>
...
0
votes
0answers
127 views
how to parse a soap request to get required data in c
I am using libxml2 library for parsing the xml files and succeeded to get the required data.
But is the same library is sufficient to parse the soap request as shown and get
<?xml version="1.0" ...
0
votes
0answers
37 views
Tool or API for mass adding properties to many xml files?
I have some xml that looks like this in each report:
Header
Cell
/Cell
Cell
/Cell
...
/Header
In each cell I need to add:
<property ...
1
vote
1answer
137 views
Embedded Parser Memory Use XML vs JSON vs?
I have an embedded weberver which is currently used to administer various bits of hardware over a network.
Currently it has a browser type web interface, but I need to enhance it to provide a REST ...
0
votes
1answer
66 views
map xml value to struct value
Can you please help in mapping xml values to a structure member. Suppose if struct abc has data member then it should be like abc.data = myxml.data , where myxml is an xml file which has data ...
-2
votes
1answer
160 views
how to get regular exp from xml schema(xsd)'s complextype?
How to get regular exp from xml schema? We know that xml schema has definite regular exp. But how to realize it? (e.g. code a program to get regular exp).
Only consider complexType. For example: in ...
0
votes
0answers
22 views
Running several queries from a file on XAIRA
Is there an efficient way of running several queries on XAIRA from a file containing those queries? I have a list of 30,000+ English phrases (right now they're in a *.txt file, but I can easily ...
0
votes
0answers
518 views
Undefined reference to libxml2 but works on another c file
I tested this simple c file using libxml and it works fine, so I know that I have libxml installed correctly. However I tired running another file that has only this include statement #include ...
0
votes
1answer
201 views
Libxml2 doesn't parse a valid xml file (seg fault) on first line
I installed libxml2 and am using to compile a sample file that reads an xml document. I use the following to flags so I am using the libxml2:
gcc `xml2-config --cflags xml2-config --libs` libxml.c
...
0
votes
1answer
273 views
SVGKit does not show potrace generated images
I'm generating a svg image from a bmp image with potrace. The generated image shows fine in Illustrator, but when I try to show it with SVGKit on an iPad it loads a blank image.
SVGKit works with ...

