due to abuse of mailing list (and apparent weak protection by yahoo against spammers like that) i have changed xmlpull-user membership from Open (anyone can...
i hate to do it (reply to my own email) but i changed my mind and in interest of making easy to post questions i leave mailing list membership open however...
Hello, xmlpull-user. After build.bat i have those C:\temp\xpp3-1.1.3.4.D>run junit JAVA_HOME=C:\j2sdk1.4.2_04 C:\j2sdk1.4.2_04\bin\java -cp...
Pavel Reich
preich@...
Jun 12, 2004 4:18 pm
174
... there may be something wring with your classpath (no parser implementation was found). make sure to do ant all to get right things generated in build...
BTW: i have just downloaded http://www.extreme.indiana.edu/dist/java-repository/xpp3/distributions/xpp3-1.1.3.4.D_all.zip and after unpacking i got all working...
Hello, Aleksander. You write Saturday, June 12, 2004, 8:28:15 PM: AS> BTW: i have just downloaded AS>...
Pavel Reich
preich@...
Jun 12, 2004 5:51 pm
177
Pavel, is it possible that you do this under bash? if so then you need to change CLASSPATH to have colon (: ) and not semicolon (;) or try to use classpath.sh...
Hello, Aleksander. You write Saturday, June 12, 2004, 9:54:42 PM: AS> is it possible that you do this under bash? if so then you need to AS> change CLASSPATH...
Pavel Reich
preich@...
Jun 16, 2004 2:27 pm
179
... oh yes - it may be problem - when you have xpp3 jar you do not need xmlpull jar (it is just API) so i suggest use java -classpath xpp3-1.1.3.4.D.jar;. ... ...
Hello, Aleksander. I include xpp3-1.1.3.4.D.jar to my web_protocol.war (WEB-INF/lib/xpp3-1.1.3.4.D.jar), but when i try to create XmlPullParserFactory i have...
Pavel Reich
preich@...
Jun 17, 2004 10:55 am
181
... you need ot make sure that code that is calling/using XPP3 is in the same class loader where is xpp3*.jar file. ... more debugging :) ... what is the whole...
Hello, Aleksander. You write Thursday, June 17, 2004, 2:57:46 PM: ... AS> you need ot make sure that code that is calling/using XPP3 is in the AS> same class...
Pavel Reich
preich@...
Jun 17, 2004 11:26 am
183
... the second paramete ris very important as it is used to do class loading so in servlet it should point to current classloader - typically this does the...
In my xml file has content like following: <Component> <Resource ref="s-ffd.wrl" mimeType="text/wrl" /> </Component> I would like to parse and get the text...
... this is an attribute (and not element content) so you need to get value of attribute: pp.nextTag() pp.nextTag(); pp.require(XmlPullParser.START_TAG, null,...
Is there a connection between current XMLPull API and JSR 173 from JCP ? Créez gratuitement votre Yahoo! Mail avec 100 Mo de stockage ! Créez votre Yahoo!...
... yes ... you will need to use attribute related methods such as: http://www.xmlpull.org/v1/doc/api/org/xmlpull/v1/XmlPullParser.html#getAttributeCount() ...
Hello, Im working on XML-Parsing and have downloaded the java sample MyXmlPullApp.java. Im not so experienced in Java, so i cant understand if this programm...
Hello! You use this while Loop while (eventType != xpp.END_DOCUMENT) in your sample code MyXmlPull.java. What does exactly the event END_DOCUMENT does?I mean,...
George, parsing with XML pull API is like reading stream of events. each event is identified by event type. END_DOCUMENT is the last event in the stream hence...
... actually it looks like you had following input: "<status>0</status>\n " last TEXT is for any trailing input - you can detect if it is last END_TAG by...
I'm not having much luck getting this to work. Perhaps I misunderstand the concept. I want to have a server receive XML messages thru a socket. The socket will...
Hi, Does the Spec loads documents in the memory to parse the document? Can this question be answered differently based on the different implementations? It...
... Yair, an implementation of XmlPull *could* do this but that would be not streaming. ... kXML2, XPP3, and Xni2XmlPull work in streaming fashion. you should...
... i think (Dennis Sosnoski may want to chime in?) that it streams XML pull events to build Java data representation ... streams == chunks for all practical...
... Thanks for forwarding this, Alek - I was on xmlpull-dev but not xmlpull-user, so I hadn't seen it. JiBX uses an XMLPull parser (currently shipping an older...
... hey, add your data and requirements to this issue: http://www.extreme.indiana.edu/bugzilla/show_bug.cgi?id=206 and i see what i can do about it (like...
Hi, i am absolut newbie to kxml(and xml in generall) so forgive me asking stupid questions. I have to parse a xml-file on my mobile phone and send it back...