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 186 - 215 of 308   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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
201
Is it possible by xmlpull get value on xml tag? Example: "<?xml version=\"1.0\"?>\n" + "\n"...
Fabio Maggi
info_angelini
Online Now Send Email
Nov 18, 2004
5:49 pm
202
... i am not sure i understand your question but XmlPull is _streaming_ API so you need to read stream and do not have free access to all tags only to current...
Aleksander Slominski
as10m
Offline Send Email
Nov 18, 2004
6:15 pm
203
I would STRONGLY urge you to opt for option 1. Option 2, loading entire document into memory can be disasterous unless you have complete control over the size...
Kevin Duffey
supreme_java...
Online Now Send Email
Nov 18, 2004
6:53 pm
204
Hi, Yesterday I suggest to a friend to use XmlPull. Today, he told me about OutOfMemory. The cause is he store very large text node (more than 100Mb) and the...
David Bernard
dwayne@...
Send Email
Jan 13, 2005
5:47 pm
205
... this is very special case. currently XmlPull does not support it and AFAIK there is nobody working on such feature. long time ago i was thinking about...
Aleksander Slominski
as10m
Offline Send Email
Jan 13, 2005
6:00 pm
206
I am using XmlPullParser to parse an xml input string and output portions of it to a string buffer. I am using next() to obtain events. When I have an event...
bonniezeller
Offline Send Email
Mar 7, 2005
8:58 pm
207
... use XmlPullParser.nextToken() instead of next() and entityRef in XmlSerializer ...
Aleksander Slominski
as10m
Offline Send Email
Mar 7, 2005
9:47 pm
208
... XmlPullParser parser can not modify anything (it is only reading) - you need XmlSerializer (to write), check this example: ...
Aleksander Slominski
as10m
Offline Send Email
May 4, 2005
4:36 pm
209
Hello Thanks in advance I try this and generate java.lang.IllegalArgumentException: startTag() must be called before attribute() What i can do? ... you ... ...
operaska
Offline Send Email
May 4, 2005
6:00 pm
210
... did you get unmodified Roundtrip to work? i am pretty sure it works. makes sure you use the latest version of xmlpull compatible parser (i test it with...
Aleksander Slominski
as10m
Offline Send Email
May 4, 2005
6:12 pm
211
Thank you for answering My question is the following one: I have a String with format XML, to which I want to validate him the date that is an attribute of the...
operaska
Offline Send Email
May 4, 2005
7:11 pm
212
... modify Roundtrip to have parser read from string (StringReader) and serializer to write back XML into string (StringWriter) alek ... -- The best way to...
Aleksander Slominski
as10m
Offline Send Email
May 4, 2005
7:19 pm
213
... study API, samples, and read about xmlpull: http://www.cafeconleche.org/books/xmljava/chapters/ch05s09.html and if you do not understand XML parsing then...
Aleksander Slominski
as10m
Offline Send Email
May 4, 2005
8:24 pm
214
Many Many Many Thanks, xpp is the best parser XML that I have seen. Thank you again Please he looks at this: ...
operaska
Offline Send Email
May 4, 2005
9:54 pm
215
... check http://www.xmlpull.org/v1/download/unpacked/doc/quick_write.html http://www.xmlpull.org/v1/doc/api/org/xmlpull/v1/XmlSerializer.html ... i do not...
Aleksander Slominski
as10m
Offline Send Email
May 10, 2005
12:15 am
Messages 186 - 215 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