Hi, do anyone in the group tried generating a XSD from an available XML file? There are few tools like XMLSpy that do it, but they are not freeware. Do anybody...
... sure :-) here is a minimalist DOM builder that uses XmlPull API (requires JAXP DocuementBuilder implementation such as provided in JDK 1.4 or use Xerces2,...
Hi I'm new to using pull parser, I would appriciate your help in following. For the following XML, the pullparser can only recognize the 1st element and the...
... hi, it would be helpful if you posted complete sample program to reproduce problem (we plan to have BugZilla soon to simplify it). i have checked parsing...
... hi, do you know any SAX2 parser that actually will provide safe to reuse Attributes? i have checked Xerces2 and Piccolo are also reusing Attributes ... ......
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...