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

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 90 - 119 of 308   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
90
Hi all, i'm just getting started using XMLPull, and already gor my first problems. Where can I find Examples using xpp3 and mager point to get started how do i...
jenspehe
Offline Send Email
Oct 2, 2003
2:26 pm
91
... As i know xerces gives all the possebilities that xpath has....
jenspehe
Offline Send Email
Oct 2, 2003
2:28 pm
92
... please read: http://xmlpull.org/v1/download/unpacked/doc/quick_intro.html this is comlete example that demonstrates how to parse XML file. thanks, alek -- ...
Aleksander Slominski
as10m
Offline Send Email
Oct 3, 2003
12:13 am
93
... samples are in src/java/samples directory or online at http://xmlpull.org/v1/download/unpacked/src/java/samples/ alek - If everything seems under control,...
Aleksander Slominski
as10m
Offline Send Email
Oct 3, 2003
12:14 am
94
... xmlpull.org is *streaming* XML pull parser and is not XPATH processor. the only implementation of XPath in xerces i know about is for XML schema validation...
Aleksander Slominski
as10m
Offline Send Email
Oct 3, 2003
12:22 am
95
What is your problem? Post it here, perhaps we can help. ... http://xmlpull.org/v1/download/unpacked/src/java/samples/ ... __________________________________ ...
Kevin Duffey
supreme_java...
Online Now Send Email
Oct 3, 2003
1:36 am
96
File f = new File("somefile"); parser.setInputStream(new FileInputStream(new BufferedInputStream(f))); parser.next(); // move beyond START_DOCUMENT int event; ...
Kevin Duffey
supreme_java...
Online Now Send Email
Oct 3, 2003
1:39 am
97
you were running a loop 100 times that was parsing 2MB XML file and constantly adding text content to buffer - no wonder you ran out of memory ... if you try...
Aleksander Slominski
as10m
Offline Send Email
Oct 17, 2003
3:53 am
98
i am renewing transferring and renewing xmlpull.org so there may be some hiccups (hopefully not...) please let me know if you notice problems when accessing...
Aleksander Slominski
as10m
Offline Send Email
Oct 18, 2003
9:12 pm
99
I'm using pull parser to parse my XML document. Based on the tags I will do whatever is necessary and then generate a response file. If some of the tags are...
Roja Roja
roja_roja
Online Now Send Email
Oct 28, 2003
2:09 am
100
I do something like: int event; while ((event = parser.nextTag()) != XmlPullParser.END_TAG) { if ("A".equals(parser.getName())) { // do my thing } else if...
Kevin Duffey
supreme_java...
Online Now Send Email
Oct 28, 2003
3:49 am
101
... this is tricky as you want to preserve parts of input and modify only parts in output ... in this case i would put children into List and for unknwon tags...
Aleksander Slominski
as10m
Offline Send Email
Oct 28, 2003
4:06 am
102
Alek, Thanks a lot for your input. ... I ... If ... the ... file ... something ... then ... appreciated. ... only ... just ... also ... (); ... indentation", "...
Roja Roja
roja_roja
Online Now Send Email
Oct 28, 2003
6:48 pm
103
Hey all, Aleksander, I have a question for you. Two really. First, is there any chance I can "extract" parts of the xpp3 parser out of its .jar file and embed...
Kevin Duffey
supreme_java...
Online Now Send Email
Nov 2, 2003
12:06 am
104
... yes ... i think xpp3/mxp1 may be also 2x bigger :-( ... that is MXSerializer.java ... you will have really few classes :-) ... yes - you can do this just...
Aleksander Slominski
as10m
Offline Send Email
Nov 2, 2003
1:29 am
105
Great!! Thanks Alek. I am happy to hear that I can embed it. My engine is open-source, freely available (BSD or similar style license), so anyone can use it ...
Kevin Duffey
supreme_java...
Online Now Send Email
Nov 2, 2003
3:06 am
106
... any place where you decide (Acknowledgment section documentation that says something like " This software contains code derived from XML Pull Parser 3...
Aleksander Slominski
as10m
Offline Send Email
Nov 2, 2003
3:16 am
107
Ok, so should I use MXParser, or the MXParserCachingStrings for performance? For my engine, I am strictly using it for parsing plugin.xml files, usually small....
Kevin Duffey
supreme_java...
Online Now Send Email
Nov 2, 2003
3:25 am
108
... this version is an extenstion of MXParser to speed up parsing by keeping list of tag names -> Strings (mor optimized String.intern()). this both minimizes...
Aleksander Slominski
as10m
Offline Send Email
Nov 2, 2003
3:43 am
109
Hey all, I have to complain about one missing feature. One thing I really tout about xml pull is the ability to "skip tags" while parsing. This and the ability...
Kevin Duffey
supreme_java...
Online Now Send Email
Nov 14, 2003
8:12 pm
110
... hi Kevin, ... this si tricky as you can nto just skip bytes - you need to make sure that skipped fragment is XML well formed so you need still to do ...
Aleksander Slominski
as10m
Offline Send Email
Nov 15, 2003
5:58 am
111
I'll definitely look into it, but why do you say it "has to be checked for well formnedness and namespace"? Again, I am probably wrong here, but I would think...
Kevin Duffey
supreme_java...
Online Now Send Email
Nov 15, 2003
6:28 am
112
... no! what about "<node><node>...</node></node>" - you do not want to jump to first </node> ... ... that is tradeoff that i am not willing to make -...
Aleksander Slominski
as10m
Offline Send Email
Nov 15, 2003
6:36 am
113
Fair enough, however, my request for the skipSubTree() method in the API is not so much about performance as it is convenience. Not having to add the extra ...
Kevin Duffey
supreme_java...
Online Now Send Email
Nov 15, 2003
6:41 am
114
Hi , Is the XML Pull parser for C++ available. I look at the CVS and only header files are found?Is it yet to be implemented? are there any other...
vivek200120
Offline Send Email
Nov 28, 2003
1:15 pm
115
The comments in getTextCharacters led me to assume that it would not change a &amp; to & while parsing an XML file. The problem is that it is. Is there a way...
jaybytez
Online Now Send Email
Dec 4, 2003
7:07 pm
116
... yes. ... if parser implemnting XmlPull supports http://xmlpull.org/v1/doc/features.html#xml-roundtrip then you cna do this ... try XPP3/MXP1as it impements...
Aleksander Slominski
as10m
Offline Send Email
Dec 9, 2003
11:19 am
117
it is postponed indefinitely due to lack of time :-( would you be interested in working on it? thanks, alek ... -- The best way to predict the future is to...
Aleksander Slominski
as10m
Offline Send Email
Dec 9, 2003
11:30 am
118
Hi XmlPull Users, I have just released and open source C++ WSDL parser which is based on the Xml pull parsing techniques. Its written entirely in STL C++. It...
vivek200120
Offline Send Email
Dec 10, 2003
6:48 am
119
Well,the WSDL pull parser that I released has a simple C++ xmlpull parser. It doesnt have all the advanced features that one may want,but it works so far.Its...
vivek200120
Offline Send Email
Dec 10, 2003
11:31 am
Messages 90 - 119 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