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

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

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 261 - 290 of 308   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
261
Hi all, Are there any thoughts about updating the API to take advantage of the java.nio package, and/or read data in a non-blocking mode in general? This would...
peter.loborg
Offline Send Email
Apr 6, 2006
8:30 pm
262
... hi Peter, this would be very different API from XmlPull V1 however if you have a proposed API and implementation I see no reason why xmlpull.org website ...
Aleksander Slominski
as10m
Offline Send Email
Apr 6, 2006
9:16 pm
263
Hi, You might want to look at Javolution XPP-like parser supporting NIO directly: http://javolution.org/api/javolution/xml/pull/XmlPullParserImpl.html Best...
Jean-Marie Dautelle
dautelle
Offline Send Email
Apr 6, 2006
11:12 pm
264
... hi Jean-Marie, i think what Peter asked for is for API that allows to parse multiple nio inputs in the same time efficiently by using selector like API -...
Aleksander Slominski
as10m
Offline Send Email
Apr 7, 2006
2:59 am
265
Hi, ... Yes: XmlPullParserImpl.setInput(java.nio.ByteBuffer) It is part of Javolution xpp implementation (but ot could be moved to the interface). It allows...
Jean-Marie Dautelle
dautelle
Offline Send Email
Apr 7, 2006
2:09 pm
266
Hi, I'm working with some software that uses xpp3 as its parser. However the software as it is designed doesn't allow me to have access to the parser factory....
fibremux999
Offline Send Email
May 24, 2006
3:29 pm
267
... if you know the parser implementation class name you can create it directly without factory and call setFeature on that parser (that is what factory is...
Aleksander Slominski
as10m
Offline Send Email
May 24, 2006
3:57 pm
268
Ack. Ok, for the record I'm working with XStream 1.1.3. My apologies if this is really an XStream question (flame away!) XStream has three main interfaces: ...
fibremux999
Offline Send Email
May 24, 2006
5:31 pm
269
XPP3 does nto support DOCDECL feature instead pull from CVS xni2xmlpull and use it instead (assuming sourceforge cvs works ...) ...
Aleksander Slominski
as10m
Offline Send Email
May 24, 2006
5:38 pm
270
... Apparently I don't know enough to read the implementation feature matrix at http://www.xmlpull.org/impls.shtml :) ... Ok, I'm not sure how much work needs...
fibremux999
Offline Send Email
May 24, 2006
8:33 pm
271
Hi Alek, ... I wrote an XNI driver and reader implementation for XStream, but when I attempted to set the DOCDECL feature it crashed and burned. I'm working...
fibremux999
Offline Send Email
May 26, 2006
3:24 am
272
Ok, Duh. I read that DOCDECL is always enabled for xni2xml. Sorry for making so much noise. Ok, so I have entities defined in my document declaration that...
fibremux999
Offline Send Email
May 26, 2006
3:24 am
273
... This was an Elliot issue. I was instatiating the parser like so: XmlPullParserFactory factory = X2ParserFactory.newInstance(); parser =...
fibremux999
Offline Send Email
May 26, 2006
5:37 pm
274
... <snip> ... It seems to be an Elliot issue. I was creating the parser via the X2ParserFactory thus: XmlPullParserFactory factory =...
fibremux999
Offline Send Email
May 26, 2006
5:38 pm
275
Hi - here's a pom.xml for building xni2xml with Maven 2. It depends on the xmlpull api, which I don't think is in a Internet accessable repository. I had to...
fibremux999
Offline Send Email
May 26, 2006
5:39 pm
276
ALT Mobile (http://altmobile.com) is pleased to announce the availability of the <alt> XML Studio v6. Providing XML-centric development tools for the...
altconsultingcom
altconsultin...
Offline Send Email
Jul 29, 2006
8:57 am
277
Hi all, I'm using KXml for a while now, but I keep getting the same errors... I'll explain it with an example, when <test> is the currently parsed element, and...
osccookie
Offline Send Email
Oct 10, 2006
4:32 pm
278
... did you try to call nextTag() to move to tags? HTH, alek ... -- The best way to predict the future is to invent it - Alan Kay...
Aleksander Slominski
as10m
Offline Send Email
Oct 10, 2006
7:16 pm
279
Hi, I have a requirement wherein I have to process a compressed file containing multiple xml files (lets say AllXMLs.tar.gz)....I have to parse all the XML...
Nitin
ndnair1979
Offline Send Email
Oct 17, 2006
4:57 am
280
... that would indicate that there is something <?xml version="1.0" encoding="ISO-8859-1"?> in your input after decompressin - if it is tar.gz it is not enough...
Aleksander Slominski
as10m
Offline Send Email
Oct 17, 2006
5:33 am
281
I'm looking into the DOM2XmlPullBuilder class and I get a NullPointerException when attempting to parse the following file: <?xml version="1.0"...
Frederick Burkley
fburkley
Offline Send Email
Oct 20, 2006
11:56 pm
282
hi Fred, an excellent bug report - now in bugzilla http://www.extreme.indiana.edu/bugzilla/show_bug.cgi?id=246 and it is now fixed in xpp3-1.1.4 and in CVS -...
Aleksander Slominski
as10m
Offline Send Email
Oct 23, 2006
5:19 am
283
I am pleased to announce that I will be presenting at the Washington DC XML User Group this Wednesday 11-15-06. For directions and more information on this...
altconsultingcom
altconsultin...
Offline Send Email
Nov 13, 2006
3:26 pm
284
hi, it is some time we did any modification to XmlPull API 1.1 (it is remarkably stable) but there are few minor issues and improvements recorded over years...
Aleksander Slominski
as10m
Offline Send Email
Nov 29, 2006
6:46 pm
285
Hi! I am using Eclipse, and have added xpp3_min-1.1.4c.jar to be an external jar for my current Eclipse project. I have added imports for xmlPullParser as...
Phil Troy
philtroy2001
Offline Send Email
Apr 2, 2007
12:24 am
286
... min version (xpp3_min-1.1.4c.jar) is minimal and it does not have parser factory - you have two options: 1. create parser directly using its public...
Aleksander Slominski
as10m
Offline Send Email
Apr 2, 2007
12:30 am
287
... correction - i just checked [1] and you should be fine with min version (you need standard for serializer and faster parser) and [1] has ...
Aleksander Slominski
as10m
Offline Send Email
Apr 2, 2007
12:36 am
288
THANKS/Phil ... Philip M. Troy, Ph.D., Decision Support Systems Analyst PhilTroy@... www.PhilTroy.com...
Phil Troy
philtroy2001
Offline Send Email
Apr 2, 2007
3:21 am
289
Dear Aleksander Hi! I bypassed the problem of the missing XmlPullParserFactory class by creating the relevant packages and creating classes within them as ...
Phil Troy
philtroy2001
Offline Send Email
Apr 2, 2007
4:17 am
290
... calling System.getProperty(XmlPullParserFactory.PROPERTY_NAME) allwos you to override parser impl class with system property. in case if it is null then...
Aleksander Slominski
as10m
Offline Send Email
Apr 2, 2007
4:29 am
Messages 261 - 290 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