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 to share photos of your group with the world? 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 248 - 277 of 308   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
248
Please i have problem using the java API XMLPULL. i have added the API to the CLASSPATH and some of the features are actually working well i am however unable...
Kenny Osanaiye
ken_bellars
Offline Send Email
Dec 23, 2005
11:24 pm
249
... you need a jar with actual parser (nbot just API - there are many parsers that can implement an API) ... download the latest xpp3-VERSION.jar from ...
Aleksander Slominski
as10m
Offline Send Email
Dec 23, 2005
11:27 pm
250
Hi, I was thinking about trying the Pull parsing so I wrote a simple app but I keep getting the error message saying that no valid class found ( the message...
jkiwzztn
Offline Send Email
Jan 15, 2006
8:27 pm
251
... please follow online docs (http://www.xmlpull.org/v1/download/unpacked/doc/quick_intro.html) and make sure to use a constant not actual class name then...
Aleksander Slominski
as10m
Offline Send Email
Jan 15, 2006
9:03 pm
252
I have one TAG in the XML file, just like this: <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple"...
leelightaesthete
leelightaest...
Offline Send Email
Jan 19, 2006
3:21 am
253
hello everybody, how to parse the child element from the XML file by using KXML2. please help me out if anyone know the matter. thanks in advance rupak...
rupak
samant_rupak
Offline Send Email
Mar 3, 2006
4:27 pm
254
... i have no idea what is the problem ... could you give actual example, show what happens and describe what is expected results. best, alek -- The best way...
Aleksander Slominski
as10m
Offline Send Email
Mar 3, 2006
4:41 pm
255
Hi Aleksander here is the XML file that i want to parse. <?xml version='1.0' encoding='iso-8859-1'?> <data> <poll pollid="1" pollquestion="whats ur name"> ...
rupak samant
samant_rupak
Offline Send Email
Mar 6, 2006
4:58 pm
256
... XML looks OK. what error did you get? what was Java code you used to parse and exact verion of kXML2 (your CLASSPATH)? how to reproduce it? best, alek ... ...
Aleksander Slominski
as10m
Offline Send Email
Mar 6, 2006
5:09 pm
257
Hi Rupak, there are some missing quotes in the pollanswer element. Please change vote=75 to vote="75" if that does not help, please send an executable piece of...
Stefan Haustein
dukoids
Offline Send Email
Mar 6, 2006
10:30 pm
258
hi stefan here is the code that i'm using for accessing the datas from the xml file using KXML2. try{ InputStreamReader reader = new InputStreamReader(nIS); ...
rupak
samant_rupak
Offline Send Email
Mar 8, 2006
4:46 am
259
Hello, I am trying to parse the following XML chunk to find the 'value' of node and 'action' : <iq type='set' to='responder@domain' id='exec1'> <command...
ibn_elromeya
Offline Send Email
Mar 14, 2006
2:55 am
260
... hi Ibn, please _always_ post the whole code and exactly what is the parser impl used so problems yuou see can be pinpointed and reproduced ... i tried with...
Aleksander Slominski
as10m
Offline Send Email
Mar 14, 2006
4:33 am
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
Messages 248 - 277 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