Tagged Questions
The expat tag has no wiki summary.
10
votes
7answers
855 views
How can a software developer become location independent?
I have been playing with the idea of working from wherever I happen and want to be.
Every now and then there is a need to change the scenery. So far I have done that simply by finding a job and ...
5
votes
2answers
171 views
Haskell parse big xml file with low memory
So, I've played around with several Haskell XML libraries, including hexpat and xml-enumerator. After reading the IO chapter in Real World Haskell (http://book.realworldhaskell.org/read/io.html) I was ...
4
votes
1answer
734 views
libxml2 vs expat for an XMPP server
I'm trying to create an XMPP library (and later a server) from scratch in a new C-like programming language (although the language itself is irrelevant) as a means to learn what I can about the XMPP ...
3
votes
9answers
2k views
Can I enforce the order of XML attributes using a schema?
Our C++ application reads configuration data from XML files that look something like this:
<data>
<value id="FOO1" name="foo1" size="10" description="the foo" ... />
<value ...
2
votes
2answers
724 views
Python + Expat: Error on � entities
I have written a small function, which uses ElementTree and xpath to extract the text contents of certain elements in an xml file:
#!/usr/bin/env python2.5
import doctest
from xml.etree import ...
2
votes
2answers
3k views
Geting xml data using xml parser expat
I have managed to parse ok. But now I am having trouble getting the values
that I need. I can get the element and the attributes. But cannot get the values.
I would like to get the value of frame in ...
2
votes
4answers
384 views
What is the most efficient way of extracting information from a large number of xml files in python?
I have a directory full (~103, 104) of XML files from which I need to extract the contents of several fields.
I've tested different xml parsers, and since I don't need to validate the contents ...
2
votes
5answers
2k views
Need advice on getting a job in a foreign country
I am a citizen of the United States of America and I want to get a job in the United Kingdom. Sounds good on the surface but I am looking for some advice on what to expect in the way of taxes (and ...
1
vote
3answers
69 views
Expat parser - c++ -Exception handling
I have registered three handlers with expat parser:
- start
-end
- text
And from the main program, I read the xml file, buffer it and invoke XML_Parse API.
Something like this:
try {
if( ! XML_Parse ...
1
vote
2answers
95 views
Library fails to build if “autoreconf -i” is run before ./configure
I'm working with a tool that is supposed to simplify the build process of Unix-based apps. One of the things it does automatically is run "autoreconf -i" before doing "./configure". However, when it ...
1
vote
1answer
58 views
Expat XML Generator APIs
Is Expat more popular as an xml parser or as an xml generator? Please let me know some basic 1-2 APIs if using Expat as an xml generator.
1
vote
1answer
98 views
C++ Expat and XML parsing
I am new to using expat. I am trying to figure out how XML_SetUserData is intended to do. In my case, I have a list of class A objects and I need to populate this list as I parse the XML stream.
So ...
1
vote
3answers
222 views
How to properly convert char* into std::string? (issues while using expat / std::string(char*))
Problem Description
I'm using Expat with a custom C++ wrapper, which I already tested on other projects.
I'm running into problems, because the original data (c_str) is not converted to a std::string ...
1
vote
2answers
181 views
Gracefully recover from parse error in expat
XML is supposed to be strict, and so there are some Unicode characters which aren't allowed in XML. However I'm trying to work with RSS feeds which often contain these characters anyway, and I'd like ...
1
vote
2answers
319 views
using expat startelement handler C++
Hello
I am using expat to read an xml file. I want to populate some of my class member variables from the configruation specified in thexml file. I have defined my startelement handler,
void ...
1
vote
1answer
702 views
Parsing XML in Python using Expat
Background: I'm coming from C#-land, so I'm looking for something like being able to handle nodes and values by selecting via Xpath.
Here's my code, so far:
import urllib
import sys
from ...
1
vote
1answer
321 views
Losing whitespace around escaped symbols in CDATA using Expat XML parser in C++
I'm using XML to send project information between applications. One of the pieces of information is the project description. So I have:
<ProjectDescription>Test & spaces ...
0
votes
2answers
23 views
Validate XML document with expat
I have a problem with XML validation with expat. I have not found document or wiki that can help me to validate my xml document.
Is it possible to validate my XML document via xml schema (xsd file) ...
0
votes
0answers
21 views
PHP SAX / EXPAT Parser for Large File
HI I am trying to make a parser using SAX/EXPAT techniqe to parse huge xml file approx 600MB. During Parsing I want to generate CSV file for filtered records. xml_parse_into_struct makes array of ...
0
votes
2answers
25 views
Parsing only part of a document with expat in PHP
I am building a website in PHP in which the content is stored in an XML file. Basically I have a single index.php page, which checks the querystring and serves the appropriate page from the XML.
For ...
0
votes
1answer
87 views
How do I replace/update the version of the expat library used by Apache?
(Disclaimer: I just started using Linux and don't have much experience with configuring Apache and Python.)
I have a rather common issue that is explained in more depth here ...
0
votes
3answers
161 views
error at building libjingle on Mac OS X 10.7.2 like “error: string.h: No such file or directory”
I failed to build libjingle on Mac OS X 10.7.2. The output was the following when I run $path_to_swtoolkit/hammer.sh according to the README of libjingle.
MBP17:talk rei25$ ...
0
votes
1answer
34 views
Controlling number of bytes read() at a time with Expat
I'm parsing some XML using Python's Expat (by calling parser = xml.parsers.expat.ParserCreate() and then setting the relevant callbacks to my methods).
It seems that when Expat calls read(nbytes) to ...
0
votes
1answer
95 views
Parsing ampersands with expat fails. Invalid token?
I get an expat error when parsing specific characters only. Other HTML code is parsed just fine.
I'm using the UTF-8 library of expat libexpatMT.lib and I'm working with char and std::string in a ...
0
votes
1answer
260 views
unable to parse data as i am getting an expatParser Exception
guys
Following is the xml which i am trying to parse
<?xml version="1.0" encoding="UTF-8"?><Categories><category name="Banquet & Marriage Hall" id="1" image=""/><category ...
0
votes
1answer
79 views
Importing pyFileMaker complains about EXPAT library
I've just downloaded pyFileMaker. I copied the directory PyFileMaker into the dir Lib under Python31 directory, but when I simply include the module FMServer with this line:
from PyFileMaker import ...
0
votes
1answer
740 views
Android parsing an xml with saxparser
I am trying to parse an xml file withSaxParser on Android.
This is my xml file:
<?xml version="1.0" encoding="UTF-8"?>
<cars>
<car model="CitroenC3">
...
0
votes
0answers
64 views
How to find character references in XML with Expat
I'm trying to parse (in C++, with Expat) some XML which contains things like:
[EDIT 2011/3/10]
<fo:block>
<fo:inline>
Office phone
</fo:inline>


<fo:inline>
...
0
votes
1answer
275 views
Segmentation Fault (11) on httpd when python-ldap is initialized
I'm using mod_wsgi for a Django application (OSQA) on RHEL 5 with Python 2.43 (cannot upgrade).
I had the site set up and working fine, and then tried to integrate the authentication with python-ldap ...
0
votes
1answer
256 views
Expat-based xml parsing script not working on Linux, work on Windows
I'm writing a set of tool in python to extract data from some xml files that are generated by a traffic simulation software. As the resulting files can be quite big I use the xml.parsers.expat to ...
0
votes
0answers
250 views
import xml.parsers.expat does not work after PyXML installation
Сonsequently, PyXML does not work too.
Before PyXML installation command
import xml.parsers.expat
works well.
Error message:
>>> import xml.parsers.expat
Traceback (most recent call ...
0
votes
1answer
185 views
Compile EXPAT to statically-linked .a on Windows
I am writing C program on Windows with MingW and want to use EXPAT XML library. I want to compile my program statically, so I need static .a library.
Is there any way to compile EXPAT to .a static, ...
0
votes
2answers
328 views
getting expat to use .dtd for entity replacement in python
I'm trying to read in an xml file which looks like this
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE dblp SYSTEM "dblp.dtd">
<dblp>
<incollection>
...
0
votes
1answer
492 views
Python.expat can't parse XML file with bad symbols. How to go around?
I'm trying to parse an XML file (OSM data) with expat, and there are lines with some Unicode characters that expat can't parse:
<tag k="name"
...
0
votes
3answers
566 views
How to fix noncompliant HTML so Expat will parse it (htmltidy not working)
I'm trying to scrape information from http://www.nfl.com/scores (in particular, find out when a game is over so my computer can stop recording it). I can download HTML easily enough, and it makes ...
0
votes
2answers
730 views
Yahoo BOSS Python Library, ExpatError
I tried to install the Yahoo BOSS mashup framework, but am having trouble running the examples provided. Examples 1, 2, 5, and 6 work, but 3 & 4 give Expat errors. Here is the output from ex3.py:
...
0
votes
4answers
531 views
Python xml.dom and bad XML
I'm trying to extract some data from various HTML pages using a python program. Unfortunately, some of these pages contain user-entered data which occasionally has "slight" errors - namely tag ...
0
votes
2answers
896 views
XML parsing expat in python handling data
I am attempting to parse an XML file using python expat. I have the following line in my XML file:
<Action><fail/></Action>
expat identifies the start and end tags but ...
0
votes
4answers
604 views
expat parser: memory consumption
I am using expat parser to parse an XML file of around 15 GB . The problem is it throws an "Out of Memory" error and the program aborts .
I want to know has any body faced a similar issue with the ...
0
votes
4answers
950 views
What is an XML parser? Using Expat
This might seem like a simple question.
But I have been looking for an XML parser to use in one of my applications that is running on Linux.
I am using Expat and have parsed my XML file by reading ...
-2
votes
1answer
184 views
Expat xml parser in python
When using expat xml parser in python, how can I get it store the parsed the xml data in a string or in a file or in any data structure. Please show me a way to accomplish how to parse and use the ...