Hi, I have a requirement wherein I have to process a compressed file containing multiple xml files (lets say AllXMLs.tar.gz)....I have to parse all the XML...
... that would indicate that there is something <?xml version="1.0" encoding="ISO-8859-1"?> in your input after decompressin - if it is tar.gz it is not enough...
hi Fred, an excellent bug report - now in bugzilla http://www.extreme.indiana.edu/bugzilla/show_bug.cgi?id=246 and it is now fixed in xpp3-1.1.4 and in CVS -...
I am pleased to announce that I will be presenting at the Washington DC XML User Group this Wednesday 11-15-06. For directions and more information on this...
hi, it is some time we did any modification to XmlPull API 1.1 (it is remarkably stable) but there are few minor issues and improvements recorded over years...
Hi! I am using Eclipse, and have added xpp3_min-1.1.4c.jar to be an external jar for my current Eclipse project. I have added imports for xmlPullParser as...
... min version (xpp3_min-1.1.4c.jar) is minimal and it does not have parser factory - you have two options: 1. create parser directly using its public...
Dear Aleksander Hi! I bypassed the problem of the missing XmlPullParserFactory class by creating the relevant packages and creating classes within them as ...
... calling System.getProperty(XmlPullParserFactory.PROPERTY_NAME) allwos you to override parser impl class with system property. in case if it is null then...
Hello, in my xsl file I have <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="xml" version="1.0"/> ... ...
... "&Ident" is interpeted as name of entity - this is not allowed in XML and must be escaped use & (not &Amp;) and all should work fine. best, alek ... --...
Dear Aleksander Thanks for your help; I am very pleased with the ease of using XMLPullParser. Keep up the good work! Phil ... Philip M. Troy, Ph.D., Decision...
Hi I'm stress testing an application that uses XPP3. I'm seeing the following stacktrace sporadically: java.io.EOFException: no more data available Thread-5:...
... are you using the same parser instance in multiple threads? this is not supported. as noted in docs and as it is usual for XML parser: XPP3 is not multi...
... one more addition maybe it is obvious but ... you can use the same instance in multiple threads *if* you will do all synchronization to make sure no two...
Hi, I am using the kXML API in particular the XmlSerializer however all my xml tags are generated with a prefix on them for example: If i was trying to...
... looks like a bug in kXML - do use the latest version? did you try to run the same code with XPP3 to verify? best, Alek ... -- The best way to predict the...
I tried to run the sample program of xpp3 MyXmlPullApp.java with parametr of a sample xml file containing external entities defined in dtd is failed to execute...
... XPP3 does not support DTDs - as workaround for entities you can define your own replacement. best, Alek ... -- The best way to predict the future is to...
Hi all, I am using XPP3 to parse a document containing a custom namespace and use an XPath predicate to pull out an element, but XPP3 does not find the...
XPath with namespaces definitely works - i used it many times :) make sure that XML parsed is with namespace aware builder mdoe set on? and if it does nto help...
Alek, Thanks for the quick reply! I believe that XPP3 is set to be namespace aware, as the factory method I call to give me an XmlInfosetBuilder object sets...
Hi, I hope this post is relevant to this forum. I'm using Sun's implementation of StAX parser to parse some large xml files. The file size is about 1.5MB. I'm...
... hi Sam, in contrast o XmlPull API in STAX there is no requirement to retrn all text inside element in one event instead youmay get multiple - just modify...