Hi all, I'm trying to use XNI pull parser in my application (SAX push previously used) but cannot even start parsing, it fails after first call 'next()' or...
hi, wht verions of Xerces2 do you use? alek ... -- "Mr. Pauli, we in the back are all agreed that your theory is crazy. What divides us is whether it is crazy...
Hi Alek, Thank you for your quick reply. The version is Patched Xerces 2.3.0 from 29-Jan-2003. We had a problem with the origin release of this version so...
Yes, it was Xerces2 version problem, after I updated with 2.4.0 this problem is gone. Thank you Alek. ... first ... (Unknown ... n ... true); ... method 'next ...
Hi, I'd like to know if it's possible to decode a long xml file using XML pull without buffering all the document into the reader. I'd like to be abble to get...
... yes. ... details will alway depend on implementation as XmlPull is just API. in case XPP3 you can open reading stream and keep pulling for new entries - of...
... please use XPP3 (download from http://www.extreme.indiana.edu/xgws/xsoap/xpp/download/) and it contains already SAX2 driver from XmlPull.org (see ...
Ooops sorry for the previous post guys.. It works fine ..I had made a blunder.. But is it necessary as per Xml Namespace that the atrribute whose namespace is...
... that happens to everybody :-) ... attributes are unordered and there is no requirements on order of them - essentially any order is valid (if xmlns...
Does XPP3 have support for xml schema validation ? If true, what is the feature id and property setting on the factory and or parser ? Thanks in advance, ...
Hi, I'm attempting to dowload the XPP3/XPP2 implementations from http://www.xmlpull.org/ and http://www.extreme.indiana.edu/soap/xpp, says page not found. Is...
A quick note to XMLPull Users. I have just released an open source messaging framework that simplifies the development of Web services. The examples...
... it is temporarily down (looks like whole submet went down). shortly should be back. ... we need to think about it. AFAIK there is no mirror. thanks, alek ...
I am trying my hand at something I believe is possible with XMLPull, just not entirely sure how best to go about it. Basically, I have a simple plugin engine...
Hi, I am not an expert in XML, Is there a way in which I can parse XML-Pull using XPath queries? which is the library/API I would need for this? Thanks....
Hi all, i'm just getting started using XMLPull, and already gor my first problems. Where can I find Examples using xpp3 and mager point to get started how do i...
... please read: http://xmlpull.org/v1/download/unpacked/doc/quick_intro.html this is comlete example that demonstrates how to parse XML file. thanks, alek -- ...
... samples are in src/java/samples directory or online at http://xmlpull.org/v1/download/unpacked/src/java/samples/ alek - If everything seems under control,...
... xmlpull.org is *streaming* XML pull parser and is not XPATH processor. the only implementation of XPath in xerces i know about is for XML schema validation...
What is your problem? Post it here, perhaps we can help. ... http://xmlpull.org/v1/download/unpacked/src/java/samples/ ... __________________________________ ...
you were running a loop 100 times that was parsing 2MB XML file and constantly adding text content to buffer - no wonder you ran out of memory ... if you try...
i am renewing transferring and renewing xmlpull.org so there may be some hiccups (hopefully not...) please let me know if you notice problems when accessing...
I'm using pull parser to parse my XML document. Based on the tags I will do whatever is necessary and then generate a response file. If some of the tags are...
I do something like: int event; while ((event = parser.nextTag()) != XmlPullParser.END_TAG) { if ("A".equals(parser.getName())) { // do my thing } else if...
... this is tricky as you want to preserve parts of input and modify only parts in output ... in this case i would put children into List and for unknwon tags...