Search the web
Sign In
New User? Sign Up
xmlpull-user
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 171 - 200 of 308   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
171
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...
Aleksander Slominski
as10m
Offline Send Email
May 18, 2004
5:48 am
172
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...
Aleksander Slominski
as10m
Offline Send Email
May 18, 2004
6:07 am
173
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@...
Send Email
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...
Aleksander Slominski
as10m
Offline Send Email
Jun 12, 2004
4:22 pm
175
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...
Aleksander Slominski
as10m
Offline Send Email
Jun 12, 2004
4:28 pm
176
Hello, Aleksander. You write Saturday, June 12, 2004, 8:28:15 PM: AS> BTW: i have just downloaded AS>...
Pavel Reich
preich@...
Send Email
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...
Aleksander Slominski
as10m
Offline Send Email
Jun 12, 2004
5:54 pm
178
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@...
Send Email
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;. ... ...
Aleksander Slominski
as10m
Offline Send Email
Jun 16, 2004
2:34 pm
180
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@...
Send Email
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...
Aleksander Slominski
as10m
Offline Send Email
Jun 17, 2004
10:58 am
182
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@...
Send Email
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...
Aleksander Slominski
as10m
Offline Send Email
Jun 17, 2004
11:41 am
184
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...
tuanlm11
Offline Send Email
Jun 28, 2004
5:52 am
185
... 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,...
Aleksander Slominski
as10m
Offline Send Email
Jun 28, 2004
7:39 am
186
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!...
Laurent Simon
s_t_r_a_t_i_c
Offline Send Email
Jul 13, 2004
6:52 am
187
... yes ... you will need to use attribute related methods such as: http://www.xmlpull.org/v1/doc/api/org/xmlpull/v1/XmlPullParser.html#getAttributeCount() ...
Aleksander Slominski
as10m
Offline Send Email
Jul 22, 2004
11:00 am
188
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...
georgenanos
Offline Send Email
Jul 22, 2004
11:00 am
189
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,...
georgenanos
Offline Send Email
Aug 4, 2004
3:37 pm
190
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...
Aleksander Slominski
as10m
Offline Send Email
Aug 4, 2004
3:41 pm
191
... 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...
Aleksander Slominski
as10m
Offline Send Email
Aug 26, 2004
8:47 pm
192
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...
rspydir
Offline Send Email
Aug 27, 2004
9:05 pm
193
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 ogen
yairogen
Offline Send Email
Sep 2, 2004
10:54 am
194
... Yair, an implementation of XmlPull *could* do this but that would be not streaming. ... kXML2, XPP3, and Xni2XmlPull work in streaming fashion. you should...
Aleksander Slominski
as10m
Offline Send Email
Sep 2, 2004
11:01 am
195
Do you know what way is used by JiBX? memory chunks? streams? Thanks, Yair....
yairogen
Offline Send Email
Sep 2, 2004
1:44 pm
196
... 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...
Aleksander Slominski
as10m
Offline Send Email
Sep 2, 2004
2:09 pm
197
... 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...
Dennis Sosnoski
d_sosnoski
Offline Send Email
Sep 2, 2004
9:50 pm
198
... 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...
Aleksander Slominski
as10m
Offline Send Email
Sep 3, 2004
6:04 am
199
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...
h_wolz
Offline Send Email
Oct 13, 2004
10:19 pm
200
Is there a way to 'unget' a event returned by next? This is a pretty basic thing for a parser....
Eric Merritt
cyberlync
Offline Send Email
Nov 11, 2004
6:45 am
Messages 171 - 200 of 308   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help