0
votes
1answer
33 views
error: expected ‘)’ before ‘*’ token - libxml2 - parser.h error
I want to create chat application using xmpp.
I have linked all necessary libraries into project but I am failure to add libxml2.
I am getting error on following line of parser.h …
0
votes
3answers
62 views
iPhone - does TouchXML use an undocumented APIs?
Recently I've heard that Apple is using tools to search for references to undocumented APIs and are rejecting iPhone apps from the App Store because of it.
The popular Three20 fra …
0
votes
2answers
26 views
Is there a way to build a libxml2 without text relocations on Linux?
Good afternoon,
I am having difficulties with libxml2.
I tried to build the Perl module XML-LibXML which is part of our standard runtime environment. However, this time the insta …
1
vote
1answer
50 views
The choice of XML/XSL lib for Python 2.6.x
Currently I have 2 varieties, LXML and libXML2 that both seem to work. I have tried benchmarking both, specifically for parsing memory string and files into XML and importing XSLT …
1
vote
3answers
60 views
Python XPath Result displaying only []
Hey I have just started to use Python recently and I want to use it with a bit of xPath, the thing is when I print the result of the query I only get [] and I don't know why =S
…
1
vote
0answers
39 views
What’s the most efficient way to do recursive XPath queries using libxml2?
I'm trying to put a thin wrapper around libxml2 so that it's easy to do successive xpath queries on an XML document. I want to know the most efficient way to store the context (not …
0
votes
1answer
48 views
libxml2 error handling
I'm writing a small wrapper around libxml2 in C++, and I'm trying to work out how to handle errors. For now, let's say I just want to print them out. Here's what I've got at presen …
0
votes
2answers
41 views
How LibXmlParsing can parse in chunks
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
xmlParseChunk(context, (const char *)[data bytes], [data length], 0);
}
my Question is as fol …
1
vote
2answers
150 views
Python’s libxml2 can’t parse unicode strings
OK, the docs for Python's libxml2 bindings are really ****. My problem:
An XML document is stored in a string variable in Python. The string is a instance of Unicode, and there ar …
4
votes
2answers
261 views
Good strategies for REST -> XML -> Core Data -> UITableView?
What are good practices for asynchronously pulling large amounts of XML from a RESTful service into a Core Data store, and from this store, populating a UITableView on the fly?
I …
1
vote
2answers
172 views
How to use nokogiri from Jruby on Windows?
Hello, I'm getting the following error when trying to use Nokogiri with Jruby on Windows 7
D:\code\h4>jruby -e "require 'rubygems'; require 'nokogiri'"
D:/jruby-1.3.1/bin/../li …
0
votes
2answers
56 views
Explain whats different between ImageMagick on Windows and on CentOS linux?
I have been using ImageMagick running on a Windows 2003 server that is called in a PHP script to create a thumbnail of an image using the following command:
$cmd = "convert.exe \" …
2
votes
3answers
323 views
libxml/tree.h no such file or directory
i am getting following errors.
I have already added libxml2.dylib to my project, how ever i am getting this type of trouble.
Plz any body help me.
0
votes
1answer
146 views
HTML Entity problems using Nokogiri::XML.fragment
Hi everybody,
it seems that all entities are killed using
tags = "<p>test umlauts ö</p>"
Nokogiri::XML.fragment(tags)
Result:
<p>test umlauts </ …
0
votes
1answer
57 views
How do I get libxml2’s SAX2 interface to let me see < et al?
I have some code using libxml2's SAX2 interface. I want to be able to see < type entities as entity references and not as characters but it appears that no matter what I do, li …
