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

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 115 - 144 of 308   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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
120
Hi group. I have xpp3-1.1.2a, but this does not work in a JDK1.1 environment, which I would like it to do. Any suggestions? Do the source need jdk1.3 or jdk1.4...
thor574
Offline Send Email
Jan 15, 2004
2:46 pm
121
... hi, parser and serializer APIs are JDK 1.1 (and even MIDP) compatible. however i have compiled it recently with JDK 1.4 nd that seems to be problem: so i...
Aleksander Slominski
as10m
Offline Send Email
Jan 15, 2004
5:28 pm
122
... I am stuck in build step. Maybe someone can help me out? What I did: 1) download xpp3-1.1.3.4a-RC1_src.tgz 2) extracted it: tar xvzf *.tgz 3) copied...
thor574
Offline Send Email
Jan 19, 2004
3:56 pm
123
... you did eveything fine! ... XPP3 parser did compile fine (and you should have xpp3-1.1.3.4a-RC1_min.jar with just parser code compiled). however it seems...
Aleksander Slominski
as10m
Offline Send Email
Jan 19, 2004
4:33 pm
124
... Great, thx for the quick reply. It now compiles well on IBM jdk1.4, but when I try sun jdk 1.1, I get 'Unable to initialize threads: cannot find class...
Thor Hovden
thor574
Offline Send Email
Jan 19, 2004
5:07 pm
125
... do you mean you try compiling with JDK 1.1 and you get this error? JDK 1.1 does not have bootstrap classpath concept so everything must be on CLASSPATH...
Aleksander Slominski
as10m
Offline Send Email
Jan 19, 2004
5:27 pm
126
... I added classes.zip to classpath.sh (line 21). Another 'sh build.sh' and it fixed this problem. ... Thats right, they are JDK1.2 dependent. A quick glance...
Thor Hovden
thor574
Offline Send Email
Jan 20, 2004
3:34 pm
127
Hello folks, I have a bunch of controllers which run on J2ME. What I intend to do is to create a simple webserver which will publish controller info like...
elijah_rock_2002
elijah_rock_...
Offline Send Email
Jan 21, 2004
3:53 pm
128
I noticed in various documentation that xmlpull (the xni2xmlpull implementation in particular) does support validation. While playing around with xmlpull it...
w_kubo
Offline Send Email
Jan 26, 2004
7:33 pm
129
... i think it should support whatever xerces2 supports as i plug into xerxes2 backbone XNI ... xni2xmlpull is long die for a major update so i will look on if...
Aleksander Slominski
as10m
Offline Send Email
Jan 26, 2004
10:54 pm
130
... i am not particularly good about stylesheets (do you mean XSLT or CSS?) but AFAIU you just need ot write some processing instructions (for embedded XSLT)...
Aleksander Slominski
as10m
Offline Send Email
Feb 2, 2004
8:29 pm
131
... what is the exception (please *always* send exception including stack trace!)? XmlPull factory may not be able to find a factory class implementation. did...
Aleksander Slominski
as10m
Offline Send Email
Feb 2, 2004
11:10 pm
132
Hey all, I'm new to pull parsers and I had a question. Is it possible to clone a pull parser? I was hoping to create a pull parser, parse part way through a...
natehughes1003
Offline Send Email
Feb 3, 2004
1:53 am
133
... yes but not easily. ... you need to clone not only parser but even more important original input needs to be saved for reparsing. instead i would create a...
Aleksander Slominski
as10m
Offline Send Email
Feb 3, 2004
2:59 am
134
That's too bad that I need to record it to re-parse it, I was hoping I wouldn't have to store any of the data in memory in order to 'rewind' and begin parsing...
Nathaniel Hughes
natehughes1003
Offline Send Email
Feb 4, 2004
2:10 am
135
Why can't you just save the inputstream? As you parse, it increments the position of the stream. Make a clone of the stream, which I don't think keeps anything...
Kevin Duffey
supreme_java...
Online Now Send Email
Feb 4, 2004
2:14 am
136
... that is true - parser keeps in memory only small buffer with few KBs of input. ... files streams already has ability to mark positions but what you really ...
Aleksander Slominski
as10m
Offline Send Email
Feb 4, 2004
2:28 am
137
... if you are parsing files you may take a different approach and do a real clone of parser object but that will require you looking into actual parser...
Aleksander Slominski
as10m
Offline Send Email
Feb 4, 2004
2:32 am
138
So if I implemented the clone operation in MXParser, you think I could do this? I would have to call super.clone() and also clone the Reader (with simply...
Nathaniel Hughes
natehughes1003
Offline Send Email
Feb 4, 2004
2:54 am
139
... it maintains tables of namespaces, attributes etc and those must be deep cloned. i started writing a sample CloneableMXParser and should be ready in few ...
Aleksander Slominski
as10m
Offline Send Email
Feb 4, 2004
3:00 am
140
Great, thanks. I admittedly (and perhaps obviously) don't have much experience implementing clone methods, but I'm reading up right now. I look forward to...
Nathaniel Hughes
natehughes1003
Offline Send Email
Feb 4, 2004
3:13 am
141
... it is not fun but doeable though ugly - read comments in code and interview with Ken Arnold to fully appreciate ugliness of cloning in Java ... ... here is...
Aleksander Slominski
as10m
Offline Send Email
Feb 4, 2004
6:37 am
142
Man, this is awesome, thanks Alek! I just got this compiled and working and it works like a charm. I did have to cast some of the cloned objects back to their...
Nathaniel Hughes
natehughes1003
Offline Send Email
Feb 5, 2004
4:22 am
143
So I'm having one slight problem using my cloned pull parser and I was wondering if someone could help. Here's what I'm doing: I'm parsing a file, and at a...
Nathaniel Hughes
natehughes1003
Offline Send Email
Feb 6, 2004
8:33 pm
144
hi Nate, this is now tracked in bugzilla: http://www.extreme.indiana.edu/bugzilla/show_bug.cgi?id=177 please login to bugzilla and add files with source code...
Aleksander Slominski
as10m
Offline Send Email
Feb 7, 2004
12:12 am
Messages 115 - 144 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