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...
Hi Alec, I am using PullParser2_1_9rc2_SMALL.jar. I have attached a XML file with this mail. The parser fails to parse this file with the following exception. ...
Shweta , Guess you can download the xpp3_1_1_2_src.zip from http://www.extreme.indiana.edu/xgws/xsoap/xpp/mxp1/ and then run build.bat after configuring you...
... hi, this is XPP2 that does not implement XmlPull and it is deprecated. it is recommended to use XPP3 instead (i checked it works ok for this example - it...
hi, if you do into want to recompile it form source code then there is also jar file included (xpp3-VERSION.jar) that contains _all_ files necessary to use...
Hi all. Im new into XMLPULL, I dont speak english, im sorry I have a question about this API... Can I update an existing xml file? I mean, can I add an element...
... your english sounds pretty good to me :-) ... yes but you need to read and write output at the same time. for example look on Roundtrip sample that...