Hey all, Aleksander, I have a question for you. Two really. First, is there any chance I can "extract" parts of the xpp3 parser out of its .jar file and embed...
... yes ... i think xpp3/mxp1 may be also 2x bigger :-( ... that is MXSerializer.java ... you will have really few classes :-) ... yes - you can do this just...
Great!! Thanks Alek. I am happy to hear that I can embed it. My engine is open-source, freely available (BSD or similar style license), so anyone can use it ...
... any place where you decide (Acknowledgment section documentation that says something like " This software contains code derived from XML Pull Parser 3...
Ok, so should I use MXParser, or the MXParserCachingStrings for performance? For my engine, I am strictly using it for parsing plugin.xml files, usually small....
... this version is an extenstion of MXParser to speed up parsing by keeping list of tag names -> Strings (mor optimized String.intern()). this both minimizes...
Hey all, I have to complain about one missing feature. One thing I really tout about xml pull is the ability to "skip tags" while parsing. This and the ability...
... hi Kevin, ... this si tricky as you can nto just skip bytes - you need to make sure that skipped fragment is XML well formed so you need still to do ...
I'll definitely look into it, but why do you say it "has to be checked for well formnedness and namespace"? Again, I am probably wrong here, but I would think...
... no! what about "<node><node>...</node></node>" - you do not want to jump to first </node> ... ... that is tradeoff that i am not willing to make -...
Fair enough, however, my request for the skipSubTree() method in the API is not so much about performance as it is convenience. Not having to add the extra ...
The comments in getTextCharacters led me to assume that it would not change a & to & while parsing an XML file. The problem is that it is. Is there a way...
... yes. ... if parser implemnting XmlPull supports http://xmlpull.org/v1/doc/features.html#xml-roundtrip then you cna do this ... try XPP3/MXP1as it impements...
it is postponed indefinitely due to lack of time :-( would you be interested in working on it? thanks, alek ... -- The best way to predict the future is to...
Hi XmlPull Users, I have just released and open source C++ WSDL parser which is based on the Xml pull parsing techniques. Its written entirely in STL C++. It...
Well,the WSDL pull parser that I released has a simple C++ xmlpull parser. It doesnt have all the advanced features that one may want,but it works so far.Its...
Hi group. I have xpp3-1.1.2a, but this does not work in a JDK1.1 environment, which I would like it to do. Any suggestions? Do the source need jdk1.3 or jdk1.4...
... hi, parser and serializer APIs are JDK 1.1 (and even MIDP) compatible. however i have compiled it recently with JDK 1.4 nd that seems to be problem: so i...
... I am stuck in build step. Maybe someone can help me out? What I did: 1) download xpp3-1.1.3.4a-RC1_src.tgz 2) extracted it: tar xvzf *.tgz 3) copied...
... you did eveything fine! ... XPP3 parser did compile fine (and you should have xpp3-1.1.3.4a-RC1_min.jar with just parser code compiled). however it seems...
... Great, thx for the quick reply. It now compiles well on IBM jdk1.4, but when I try sun jdk 1.1, I get 'Unable to initialize threads: cannot find class...
... do you mean you try compiling with JDK 1.1 and you get this error? JDK 1.1 does not have bootstrap classpath concept so everything must be on CLASSPATH...
... I added classes.zip to classpath.sh (line 21). Another 'sh build.sh' and it fixed this problem. ... Thats right, they are JDK1.2 dependent. A quick glance...
Hello folks, I have a bunch of controllers which run on J2ME. What I intend to do is to create a simple webserver which will publish controller info like...
I noticed in various documentation that xmlpull (the xni2xmlpull implementation in particular) does support validation. While playing around with xmlpull it...
... i think it should support whatever xerces2 supports as i plug into xerxes2 backbone XNI ... xni2xmlpull is long die for a major update so i will look on if...
... i am not particularly good about stylesheets (do you mean XSLT or CSS?) but AFAIU you just need ot write some processing instructions (for embedded XSLT)...
... what is the exception (please *always* send exception including stack trace!)? XmlPull factory may not be able to find a factory class implementation. did...
Hey all, I'm new to pull parsers and I had a question. Is it possible to clone a pull parser? I was hoping to create a pull parser, parse part way through a...