I am confused about how the xml v1 api properties work. I am using getProperty("http://xmlpull.org/v1/doc/properties.html#xmldecl-version ") to retrieve the...
hi , i am planning to use xmlpull for an embedded system because its highly efficient.I tested the kxml2 impln and its really fast!.The problem is that my...
hi Raj, i know about two active efforts nowadays to implement XML pull parser in C++: * wsdlpull: http://sourceforge.net/projects/wsdlpull and see [1] *...
Hi, sorry forgot to say that we are testing Guththila parser abstraction layer , http://issues.apache.org/jira/browse/AXISCPP-785 the execution time redecuses...
Din%$h
xydinesh@...
Sep 19, 2005 4:08 am
235
... parser in ... Hi Raj, wsdlpull is wsdl parser and has an xml parser and xml serializer. Both are based off the kxml2 parser .It supports most of the...
Hi, Just to let you know that a bug was affecting Javolution (http://javolution.org) xpp parser. The XmlPullParserImpl with the fix (v.3.5.5) is now about 2x...
... great - can you send me the link to description what was changed (diffs?) ... sure - what would you like to be there? is javolution version implementing...
Hi, ... Basically, the attributes were not reset when parsing nested xml elements (resetting was performed only on end tag). Which meant that the xml ...
I need a function that can extract a subtree. The function would be similar to the skipSubTree function but would return the subTree in a String. I don't see...
... Rob, it is not hard except for namespaces - do you need ot make sure that extract XML fragment is self contained (has all namespace prefixes declarations...
... be ... in a ... like ... way ... that ... I do not. My xml doesn't use namespaces. It doesn't seem as straight forward as looping until finding the end tag...
... actually if you use XPP3 (or any xmlpull parser that supports http://xmlpull.org/v1/doc/features.html#xml-roundtrip) then enable XML ROUNDTRIP optional...
... you need to make sure that it is valid XML file - for example use XHTML valiator http://validator.w3.org/ HTH, alek -- The best way to predict the future...
Hi, I have an xml which looks like <a> <tag></a> When I do nextToken() after I get the <a> start tag I get an ENTITY_REF event after which I need to to...
... yes - and even more - parser may choose to provide more tokens/events (TEXT may be split in smaller chunks)) depending on how it is doing buffering ... ...
Hi, We having a problem parsing a xml document to do the unMarshall method. It seems that if we have empty tags in the xml document it occurs this exception : ...
hi Bruno having full test case help solve problems - i tried with your XML fragment but not usre if it all that is needed to fix it. also for good bug/issue...
Please i have problem using the java API XMLPULL. i have added the API to the CLASSPATH and some of the features are actually working well i am however unable...
... you need a jar with actual parser (nbot just API - there are many parsers that can implement an API) ... download the latest xpp3-VERSION.jar from ...
Hi, I was thinking about trying the Pull parsing so I wrote a simple app but I keep getting the error message saying that no valid class found ( the message...
... please follow online docs (http://www.xmlpull.org/v1/download/unpacked/doc/quick_intro.html) and make sure to use a constant not actual class name then...
hello everybody, how to parse the child element from the XML file by using KXML2. please help me out if anyone know the matter. thanks in advance rupak...
... i have no idea what is the problem ... could you give actual example, show what happens and describe what is expected results. best, alek -- The best way...
Hi Aleksander here is the XML file that i want to parse. <?xml version='1.0' encoding='iso-8859-1'?> <data> <poll pollid="1" pollquestion="whats ur name"> ...
... XML looks OK. what error did you get? what was Java code you used to parse and exact verion of kXML2 (your CLASSPATH)? how to reproduce it? best, alek ... ...
Hi Rupak, there are some missing quotes in the pollanswer element. Please change vote=75 to vote="75" if that does not help, please send an executable piece of...
hi stefan here is the code that i'm using for accessing the datas from the xml file using KXML2. try{ InputStreamReader reader = new InputStreamReader(nIS); ...
Hello, I am trying to parse the following XML chunk to find the 'value' of node and 'action' : <iq type='set' to='responder@domain' id='exec1'> <command...