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 156 - 186 of 308   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
156
I run into the problem that I can't instantiate an XmlPullParserFactory. I replace: XmlPullParserFactory factory = XmlPullParserFactory.newInstance ...
Berco Beute
bbeute
Offline Send Email
Mar 3, 2004
6:58 pm
157
I found the solution, instead of XmlPullParserFactory factory = XmlPullParserFactory.newInstance ("org.xmlpull.v1.XmlPullParserFactory", this.getClass()); I...
Berco Beute
bbeute
Offline Send Email
Mar 6, 2004
11:10 am
158
... hi, XmlPullParserFactory has protected constructor and cannot be instantiated. it is meant as a base class for parser specific factory. ... i think that...
Aleksander Slominski
as10m
Offline Send Email
Mar 7, 2004
8:02 am
159
I'm using kXML to build a RDF/XML serializer, and have come across some troubles as far as entity references in attributes is concerned. Due to the extreme...
alfred_doeblin
Offline Send Email
Mar 17, 2004
11:18 pm
160
Hi, kXML ignores the doctype declaration, so you either need to use a different pull parser, or to analyze the DTD on your own and to use...
Stefan Haustein
dukoids
Offline Send Email
Mar 18, 2004
10:35 am
161
Mmmm I'm afraid either I haven't explained it too well or you haven't understood it thoroughly. Yes, I'm aware that kXML ignores the doctype serialization...
alfred_doeblin
Offline Send Email
Mar 18, 2004
11:25 am
162
Hi Alek, recently I had to support schema validation (Using xni pull parser) for my request processor and found that XNI implementation is missing a few...
magixinc
Offline Send Email
Mar 18, 2004
6:23 pm
163
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the xmlpull-user group. File : /...
xmlpull-user@yahoogro...
Send Email
Mar 22, 2004
5:24 am
164
it was deleted and i disabled file upload. alek ... -- The best way to predict the future is to invent it - Alan Kay...
Aleksander Slominski
as10m
Offline Send Email
Mar 22, 2004
9:19 am
165
Has anyone by chance implemented an XmlPullParser driven by SAX events rather than text input streams? I need such an adaptor and figured it would be worth...
Brian McCallister
binerdog
Offline Send Email
Apr 2, 2004
3:55 pm
166
... there is problem of how to invert control from SAX parser thread to allow pulling of events. you may want to look at http://www.trantor.de/xml/ through it...
Aleksander Slominski
as10m
Offline Send Email
Apr 3, 2004
5:21 pm
167
Hi, ... XmlPullParserFactory factory = XmlPullParserFactory.newInstance ("org.kxml2.io.KXmlParser", this.getClass()); factory.setNamespaceAware(true); parser =...
Berco Beute
bbeute
Offline Send Email
Apr 5, 2004
2:10 pm
168
Hi, the given information is not sufficient to reproduce the problem. Is it possible to read data from the source stream without parsing? If the stream is...
Stefan Haustein
dukoids
Offline Send Email
Apr 5, 2004
4:14 pm
169
Hi, I can read from the socket without a problem. I just found out that the problem might be with simultaneously reading and writing (duplex) to a socket in...
Berco Beute
bbeute
Offline Send Email
Apr 6, 2004
1:22 pm
171
due to abuse of mailing list (and apparent weak protection by yahoo against spammers like that) i have changed xmlpull-user membership from Open (anyone can...
Aleksander Slominski
as10m
Offline Send Email
May 18, 2004
5:48 am
172
i hate to do it (reply to my own email) but i changed my mind and in interest of making easy to post questions i leave mailing list membership open however...
Aleksander Slominski
as10m
Offline Send Email
May 18, 2004
6:07 am
173
Hello, xmlpull-user. After build.bat i have those C:\temp\xpp3-1.1.3.4.D>run junit JAVA_HOME=C:\j2sdk1.4.2_04 C:\j2sdk1.4.2_04\bin\java -cp...
Pavel Reich
preich@...
Send Email
Jun 12, 2004
4:18 pm
174
... there may be something wring with your classpath (no parser implementation was found). make sure to do ant all to get right things generated in build...
Aleksander Slominski
as10m
Offline Send Email
Jun 12, 2004
4:22 pm
175
BTW: i have just downloaded http://www.extreme.indiana.edu/dist/java-repository/xpp3/distributions/xpp3-1.1.3.4.D_all.zip and after unpacking i got all working...
Aleksander Slominski
as10m
Offline Send Email
Jun 12, 2004
4:28 pm
176
Hello, Aleksander. You write Saturday, June 12, 2004, 8:28:15 PM: AS> BTW: i have just downloaded AS>...
Pavel Reich
preich@...
Send Email
Jun 12, 2004
5:51 pm
177
Pavel, is it possible that you do this under bash? if so then you need to change CLASSPATH to have colon (: ) and not semicolon (;) or try to use classpath.sh...
Aleksander Slominski
as10m
Offline Send Email
Jun 12, 2004
5:54 pm
178
Hello, Aleksander. You write Saturday, June 12, 2004, 9:54:42 PM: AS> is it possible that you do this under bash? if so then you need to AS> change CLASSPATH...
Pavel Reich
preich@...
Send Email
Jun 16, 2004
2:27 pm
179
... oh yes - it may be problem - when you have xpp3 jar you do not need xmlpull jar (it is just API) so i suggest use java -classpath xpp3-1.1.3.4.D.jar;. ... ...
Aleksander Slominski
as10m
Offline Send Email
Jun 16, 2004
2:34 pm
180
Hello, Aleksander. I include xpp3-1.1.3.4.D.jar to my web_protocol.war (WEB-INF/lib/xpp3-1.1.3.4.D.jar), but when i try to create XmlPullParserFactory i have...
Pavel Reich
preich@...
Send Email
Jun 17, 2004
10:55 am
181
... you need ot make sure that code that is calling/using XPP3 is in the same class loader where is xpp3*.jar file. ... more debugging :) ... what is the whole...
Aleksander Slominski
as10m
Offline Send Email
Jun 17, 2004
10:58 am
182
Hello, Aleksander. You write Thursday, June 17, 2004, 2:57:46 PM: ... AS> you need ot make sure that code that is calling/using XPP3 is in the AS> same class...
Pavel Reich
preich@...
Send Email
Jun 17, 2004
11:26 am
183
... the second paramete ris very important as it is used to do class loading so in servlet it should point to current classloader - typically this does the...
Aleksander Slominski
as10m
Offline Send Email
Jun 17, 2004
11:41 am
184
In my xml file has content like following: <Component> <Resource ref="s-ffd.wrl" mimeType="text/wrl" /> </Component> I would like to parse and get the text...
tuanlm11
Offline Send Email
Jun 28, 2004
5:52 am
185
... this is an attribute (and not element content) so you need to get value of attribute: pp.nextTag() pp.nextTag(); pp.require(XmlPullParser.START_TAG, null,...
Aleksander Slominski
as10m
Offline Send Email
Jun 28, 2004
7:39 am
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
Messages 156 - 186 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