Hi, I'm working with some software that uses xpp3 as its parser. However the software as it is designed doesn't allow me to have access to the parser factory....
... if you know the parser implementation class name you can create it directly without factory and call setFeature on that parser (that is what factory is...
Ack. Ok, for the record I'm working with XStream 1.1.3. My apologies if this is really an XStream question (flame away!) XStream has three main interfaces: ...
... Apparently I don't know enough to read the implementation feature matrix at http://www.xmlpull.org/impls.shtml :) ... Ok, I'm not sure how much work needs...
Hi Alek, ... I wrote an XNI driver and reader implementation for XStream, but when I attempted to set the DOCDECL feature it crashed and burned. I'm working...
Ok, Duh. I read that DOCDECL is always enabled for xni2xml. Sorry for making so much noise. Ok, so I have entities defined in my document declaration that...
Hi - here's a pom.xml for building xni2xml with Maven 2. It depends on the xmlpull api, which I don't think is in a Internet accessable repository. I had to...
ALT Mobile (http://altmobile.com) is pleased to announce the availability of the <alt> XML Studio v6. Providing XML-centric development tools for the...
Hi all, I'm using KXml for a while now, but I keep getting the same errors... I'll explain it with an example, when <test> is the currently parsed element, and...
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...