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 77 - 107 of 308   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
77
... please use XPP3 (download from http://www.extreme.indiana.edu/xgws/xsoap/xpp/download/) and it contains already SAX2 driver from XmlPull.org (see ...
Aleksander Slominski
as10m
Offline Send Email
Jul 1, 2003
4:13 pm
78
Hi , I am using a XML pull parser to parse the following <!-- root element wsdl:definitions defines set of related services --> <wsdl:definitions...
vivek200120
Offline Send Email
Jul 17, 2003
3:10 pm
79
Ooops sorry for the previous post guys.. It works fine ..I had made a blunder.. But is it necessary as per Xml Namespace that the atrribute whose namespace is...
vivek200120
Offline Send Email
Jul 17, 2003
3:37 pm
80
... that happens to everybody :-) ... attributes are unordered and there is no requirements on order of them - essentially any order is valid (if xmlns...
Aleksander Slominski
as10m
Offline Send Email
Jul 18, 2003
2:17 pm
81
Does XPP3 have support for xml schema validation ? If true, what is the feature id and property setting on the factory and or parser ? Thanks in advance, ...
sharminchoksey
Offline Send Email
Jul 20, 2003
4:30 pm
82
Hi, I'm attempting to dowload the XPP3/XPP2 implementations from http://www.xmlpull.org/ and http://www.extreme.indiana.edu/soap/xpp, says page not found. Is...
sharminchoksey
Offline Send Email
Jul 21, 2003
5:55 pm
83
A quick note to XMLPull Users. I have just released an open source messaging framework that simplifies the development of Web services. The examples...
Naresh Bhatia
bhatiana
Offline Send Email
Jul 21, 2003
6:27 pm
84
Both sites are up again. Thanks, Sharmin. ... http://www.extreme.indiana.edu/soap/xpp,...
sharminchoksey
Offline Send Email
Jul 21, 2003
6:50 pm
85
... it is temporarily down (looks like whole submet went down). shortly should be back. ... we need to think about it. AFAIK there is no mirror. thanks, alek ...
Aleksander Slominski
as10m
Offline Send Email
Jul 21, 2003
6:55 pm
86
I am trying my hand at something I believe is possible with XMLPull, just not entirely sure how best to go about it. Basically, I have a simple plugin engine...
Kevin Duffey
supreme_java...
Online Now Send Email
Jul 31, 2003
6:25 am
87
... you can try XB1 http://www.extreme.indiana.edu/xgws/xsoap/xpp/xb1/ grab code and adapt to your needs look in particular on XmlElementImpl ...
Aleksander Slominski
as10m
Offline Send Email
Jul 31, 2003
7:21 pm
88
Hi, I am not an expert in XML, Is there a way in which I can parse XML-Pull using XPath queries? which is the library/API I would need for this? Thanks....
Harish
sk_harish
Offline Send Email
Aug 2, 2003
1:45 am
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
Messages 77 - 107 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