I'm getting exceptions when running kXML/XMLPull with v1.0.4 of the Wireless Toolkit from sun: Building "Cafe" [Output directory for verified classes:...
Hi Anthony, due to a missing Exception class in CLDC it is not possible to use XXX.class in current CLDC/MIDP implementations. I tried to work around theis...
hi, the version 1.1.2 of XmlPull API is now available that has improved handling for XMLDecl, improved J2ME compatibility, and improved usability of...
... hi, i thought i knew about all XML pull and pull-over-push parsers - but i guess one can never know what is happening out there :-) ... this is very...
... hi, initial state is START_DOCUMENT and parser may do some intial reading of input when setInput() is called to detect input encoding otherwise only ...
... hi, i think there is no definition of PI data in XML 1.0 grammar but just PITarget and PI data was introduced in XML infoset as content: processing...
... hi, that is right and nobody expects DOM to be faster but still it is important to know what is overhead of creating of all XML in memory (DOM) when...
Hi, i try to implement an XML protocol (SOAP like) using asynchronous I/O (using java.nio.Buffer). I've a little problem because, i receive a buffer (a...
... hi, XML parser is required to resolve entities. the best way around it is not to include non-standard XML entities :-) XML 1.0 defined few standard entity...
... interesting idea. i will make optional feature (how IGNORE_UNRESOLVED_ENTITY_REF sounds?) and if set it will make parser to just skip over unresolveable...
... interesting project! ... i would call it *big* problem :-) ... i think that pull parser may not be the solution to your requirements but implementing it...
... that could be done by adding unescaped entity name into text content (another optional feature?). ... it is hard to know when to call skipNext( )and how to...
I have some java code (in jbuilder 7) that has data in a vector. I want to get all this data out to an xml file. It is not in xml format at all. This is part...
hi, i have added to website http://www.xmlpull.org/ information about XmlPull Addons. currently SAX2 driver that is implemented on top of XmlPullParser and XML...
I am trying to serialize / deserialize some Java objects to XML and back. I am using XML namespaces and schemas. I have looked at the XMLPull example code, but...
... hi, as long as you use XmlPull API this choice can be changed any time you like. Xni2XmlPull us based on Xerces 2 so it is using very well tested and...
Hi , Is there any available implementation of the pull API in C++ . I am currently writing one ..but was wondering if some of the API interfaces would remain...
... hi Vivek, there is now deprecated XPP1 implemented in C++ (download from http://www.extreme.indiana.edu/soap/xpp/download/old_versions/) i am writing now...
... you have selected |unqualified for attribute names and that means that ... yes as you have attributes form defaulted to unqualified so there is no ...
... hi Sean, you are not doing anything wrong instead you have found bug in our documentation (thanks!) as this feature was supposed to be optional (this how...
... Alek, I am using the SAX2 Driver that is provided by your API. Problem is I cannot get all the attributes without this being turned on. (I am currently...
... hi, if you turn namespaces off you will get all attributes driver.setFeature("http://xml.org/sax/features/namespaces", false); but i guess you want to use...
Alek, Please excuse my HTML message (my MUA stinks) You are correct it does work correctly when I remove them.. Thanks for the help Sean ... From: Aleksander...
... the parser has to keep a bit of state including list of all start tag names from top element to current element so it can check that end tag is matching...