Expat is an XML parser library written in C
0
votes
2answers
176 views
PHP XML Expat parser: how to read only part of the XML document?
I have an XML document with the following structure:
<posts>
<user id="1222334">
<post>
<message>hello</message>
<client>client</client>
...
0
votes
1answer
65 views
Expat prints out garbage when I print to screen or file
When I print out information from my XML document I get �� before each line.
Here is my XML document.
<?xml version="1.0" encoding="ISO-8859-1"?>
<note>
<to>Tove</to>
...
0
votes
0answers
33 views
Segmentation Fault of Apache about XML Parser
I have encountered the following error of segmentation fault in Apache.
It seems that XML::Parser has a problem.
But, I have no idea to solve the segmentation fault.
Does anyone know the solution or ...
3
votes
2answers
136 views
64-bit libjingle failing to parse login XML with expat error: ERROR_INVALID_TOKEN
Only upon attempting to run my login code under 64-bit, am I getting a failure to login to talk.google.com for my initial tests. 32-bit works fine.
Upon enabling logging macros and siginput logging, ...
0
votes
1answer
589 views
Libtool claims it does not support shared libraries during cross compilation
I'm attempting to build the expat (2.0.0) XML parsing library for an ARM embedded machine running busybox 1.13, and during the ./configure, I get the error:
checking if libtool supports shared ...
0
votes
1answer
66 views
How to use expat-parser with Russian charsets?
I tried to use expat for XML parsing, and I have Russian symbols in XML file, this symbols incorrectly interpret by expat.
I got expired_str: Русский текст
...
0
votes
0answers
75 views
add xml.parsers.expat module in python file using netbeans platform with jython
I built my application in java Netbeans platform and in order to invoke method from python file I used jython jar and import org.python.util.PythonInterpreter to call the functions that I need.
when ...
0
votes
0answers
93 views
Parsing XML with Expat - how to parse nested elements?
I've got a little problem with Expat.
Expat works very fine if the XML-Element looks like this
<xmlelement value="2" value="abc"></xmlelement>
but I don't know how to get this nested ...
0
votes
0answers
36 views
Implementing additional encoding for XML parser through expat in C
I have implemented the XML parser using the expat library in C.
Now I want to enhance my code to handle the additional encoding using the unknown encoding handler.
Can you please help me in ...
0
votes
1answer
90 views
expat function XML_StartElementHandler - how to work with it?
I'm writing xml parser using expat .
just saw this :
XML_SetElementHandler
XML_Parser parser,
XML_StartElementHandler start,
XML_EndElementHandler end
I don't understand what should ...
1
vote
1answer
231 views
Why is libtool looking for .lib files instead of .a files?
I am in the process of cross-compiling Fontconfig for Windows using Mingw-w64 (the host is Ubuntu 12.04 64-bit). The process consists of the following steps:
Compile and install the build ...
0
votes
2answers
370 views
CS107 Assignment file couldn't compile, missing expat.h and thread_107.h files
I was auditing cs107 at stanford online
The problem I ran into is with assignment 6, when I type "make" in terminal, the error message pops up. Basically, I miss two header files, which I guess can ...
1
vote
0answers
119 views
expat exception handling
I had been trying hard to figure out why the exceptions thrown from StartElement event handler are not being caught by my application which makes use of expat parser( in C). The application just ...
1
vote
2answers
218 views
compiling libjingle, expat error
while installing libjingle, the installation halts because of a missing xmlparse.c
this is the error part of the install...
i do have xmlparse.c in the thirdparty/expat-2.0.1/lib/xmlparse.c,
any ...
1
vote
1answer
309 views
cygwin perl error cannot load expat.dll
c:\>perl -de 1
Loading DB routines from perl5db.pl version 1.32
Editor support available.
Enter h or `h h' for help, or `man perldebug' for more help.
main::(-e:1): 1
DB<1> require ...
3
votes
1answer
825 views
ExpatError: no element found - Python script
Using OS X 10.6.8, libxml 2-2.7.8, libxslt-1.1.26, and python 2.6, I'm trying to run the tumblrRestore.py script linked here:
...
2
votes
1answer
483 views
How to compile expat with iOS SDK 5.1?
How to compile expat with iOS SDK 5.1? I tried to adapt/upgrade from all older scripts, but nothing worked... Could anybody do it already?
0
votes
1answer
219 views
Error when trying to use XML::Parser under modperl2 - Could not load module
I've run into a problem when using XML::Parser under our modperl setup in production (on AIX 5.3). It works fine in development but fails on production with the following error:
[Tue Apr 03 ...
0
votes
1answer
322 views
Data extraction from cdata using expat in C
I am able to parse XML successfully, but I am facing probelm while extracting data from CDATA. For this, I am using XML_SetCdataSectionHandler(parser,CDATAstart,CDATAend). And by using this, my ...
3
votes
3answers
4k views
How to install XML::Parser without expat-devel?
XML::Parser fails to build on a quite fresh 64-bit Debian box. After issuing cpan XML::Parser, cpan fails with lots of errors about Expat.c and Expat.xs:
[...]
Expat.xs:2182: error: ‘CallbackVector’ ...
0
votes
1answer
517 views
gcc newly installed libraries (libexpat1-dev) not recognised in current terminal (debian)
I've spent quite a bit of time trying to get an expat based sample program to compile.
I was receiving the following error message when I tried to compile
gcc -Wall -lexpat line.c -o blah
line.c: ...
1
vote
3answers
176 views
What's a good way of encoding arbitrary text into XML in a human-readable way?
What I have so far is putting the text into CDATA tags, and dealing with the possibility of CDATA endings appearing in the text by splitting it into multiple adjacent CDATAs.
I'm not sure about this, ...
1
vote
2answers
750 views
C compiler cannot create executables
I installed OSx 1.6 and 1.7 (lion) today (1.5 was installed before). After this i reinstalled xcode and command line tools. Unistalled and cleand all ports from macport. When i try to install ...
1
vote
2answers
424 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
2answers
80 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
354 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 ...
6
votes
2answers
377 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 ...
0
votes
3answers
1k 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
88 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 ...
1
vote
3answers
206 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
726 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
164 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
284 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 ...
0
votes
1answer
332 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 ...
2
votes
3answers
481 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 ...
-2
votes
1answer
848 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 ...
0
votes
1answer
740 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
127 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 ...
3
votes
1answer
3k 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">
...
1
vote
2answers
388 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
1answer
536 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
571 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
428 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 ...
1
vote
2answers
616 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 ...
5
votes
1answer
2k 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 ...
4
votes
3answers
459 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, ...
3
votes
2answers
2k 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 ...
0
votes
2answers
534 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
701 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"
...
1
vote
1answer
2k 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 ...
