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 22 - 51 of 308   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
22
... hi, that is right and nobody expects DOM to be faster but still it is important to know what is overhead of creating of all XML in memory (DOM) when...
Aleksander Slominski
as10m
Offline Send Email
Jan 27, 2003
2:15 pm
23
Hi, i try to implement an XML protocol (SOAP like) using asynchronous I/O (using java.nio.Buffer). I've a little problem because, i receive a buffer (a...
kl_account <forax@...>
kl_account
Offline Send Email
Feb 10, 2003
9:37 am
24
... hi, XML parser is required to resolve entities. the best way around it is not to include non-standard XML entities :-) XML 1.0 defined few standard entity...
Aleksander Slominski
as10m
Offline Send Email
Feb 10, 2003
5:46 pm
25
... interesting idea. i will make optional feature (how IGNORE_UNRESOLVED_ENTITY_REF sounds?) and if set it will make parser to just skip over unresolveable...
Aleksander Slominski
as10m
Offline Send Email
Feb 10, 2003
6:11 pm
26
... interesting project! ... i would call it *big* problem :-) ... i think that pull parser may not be the solution to your requirements but implementing it...
Aleksander Slominski
as10m
Offline Send Email
Feb 10, 2003
6:28 pm
27
... that could be done by adding unescaped entity name into text content (another optional feature?). ... it is hard to know when to call skipNext( )and how to...
Aleksander Slominski
as10m
Offline Send Email
Feb 10, 2003
7:04 pm
28
I have some java code (in jbuilder 7) that has data in a vector. I want to get all this data out to an xml file. It is not in xml format at all. This is part...
eskgwin <eskgwin@...>
eskgwin
Offline Send Email
Feb 14, 2003
3:57 pm
29
... hi Allyson, that should be very easy - use XmlSerializer. for example to write beginning of your sample XML: import java.io.IOException; import...
Aleksander Slominski
as10m
Offline Send Email
Feb 14, 2003
4:37 pm
30
hi, i have added to website http://www.xmlpull.org/ information about XmlPull Addons. currently SAX2 driver that is implemented on top of XmlPullParser and XML...
Aleksander Slominski
as10m
Offline Send Email
Feb 17, 2003
11:15 pm
31
I am trying to serialize / deserialize some Java objects to XML and back. I am using XML namespaces and schemas. I have looked at the XMLPull example code, but...
Naresh Bhatia
bhatiana
Offline Send Email
Feb 24, 2003
8:56 pm
32
... hi, as long as you use XmlPull API this choice can be changed any time you like. Xni2XmlPull us based on Xerces 2 so it is using very well tested and...
Aleksander Slominski
as10m
Offline Send Email
Feb 25, 2003
6:17 pm
33
hi, this is minor 1.1.2.1 release just to pack the latest additions to tests and documentation for list of changes please see...
Aleksander Slominski
as10m
Offline Send Email
Feb 26, 2003
5:18 am
34
... hi, i started working on some design patterns for XML pull parsing (disclaimer: this _is_ work in progress) it is here: ...
Aleksander Slominski
as10m
Offline Send Email
Feb 26, 2003
5:31 am
35
Hi , Is there any available implementation of the pull API in C++ . I am currently writing one ..but was wondering if some of the API interfaces would remain...
vivek200120 <vivek200...
vivek200120
Offline Send Email
Feb 27, 2003
4:46 am
36
... hi Vivek, there is now deprecated XPP1 implemented in C++ (download from http://www.extreme.indiana.edu/soap/xpp/download/old_versions/) i am writing now...
Aleksander Slominski
as10m
Offline Send Email
Feb 27, 2003
5:05 am
37
... you have selected |unqualified for attribute names and that means that ... yes as you have attributes form defaulted to unqualified so there is no ...
Aleksander Slominski
as10m
Offline Send Email
Mar 4, 2003
8:50 pm
38
Trying MXParser pullDriver = new org.xmlpull.mxp1.MXParser(); pullDriver.setFeature(pullDriver.FEATURE_PROCESS_NAMESPACES,true); ...
Sean C. Truman
sean_truman2003
Offline Send Email
Mar 6, 2003
7:15 pm
39
... hi Sean, you are not doing anything wrong instead you have found bug in our documentation (thanks!) as this feature was supposed to be optional (this how...
Aleksander Slominski
as10m
Offline Send Email
Mar 7, 2003
4:25 am
40
... Alek, I am using the SAX2 Driver that is provided by your API. Problem is I cannot get all the attributes without this being turned on. (I am currently...
Sean C. Truman
sean_truman2003
Offline Send Email
Mar 7, 2003
1:23 pm
41
... hi, if you turn namespaces off you will get all attributes driver.setFeature("http://xml.org/sax/features/namespaces", false); but i guess you want to use...
Aleksander Slominski
as10m
Offline Send Email
Mar 7, 2003
6:23 pm
42
Alek, Please excuse my HTML message (my MUA stinks) You are correct it does work correctly when I remove them.. Thanks for the help Sean ... From: Aleksander...
Sean C. Truman
sean_truman2003
Offline Send Email
Mar 7, 2003
9:14 pm
43
Hi , I havent used this but may use it in near future .Has anyone used this tool at the below URL.But it uses the Xerces parser. ...
vivek200120
Offline Send Email
Mar 10, 2003
1:47 pm
44
... it is corrected now. thanks for telling me about it - somehow this file was not checked into CVS ... alek...
Aleksander Slominski
as10m
Offline Send Email
Mar 12, 2003
4:43 pm
45
... the parser has to keep a bit of state including list of all start tag names from top element to current element so it can check that end tag is matching...
Aleksander Slominski
as10m
Offline Send Email
Mar 15, 2003
4:16 am
46
Hi Alec, I am using PullParser2_1_9rc2_SMALL.jar. I have attached a XML file with this mail. The parser fails to parse this file with the following exception. ...
Nikhil C. Khedkar
nikhilckhedkar
Offline Send Email
Mar 26, 2003
6:33 am
47
Could someone give me the steps to configure the Xml Pull Parser XPP3? Thans in advance....
sswetha_2000
Offline Send Email
Mar 28, 2003
6:42 am
48
Shweta , Guess you can download the xpp3_1_1_2_src.zip from http://www.extreme.indiana.edu/xgws/xsoap/xpp/mxp1/ and then run build.bat after configuring you...
vivek200120
Offline Send Email
Mar 28, 2003
7:18 am
49
... hi, this is XPP2 that does not implement XmlPull and it is deprecated. it is recommended to use XPP3 instead (i checked it works ok for this example - it...
Aleksander Slominski
as10m
Offline Send Email
Mar 29, 2003
6:42 am
50
hi, if you do into want to recompile it form source code then there is also jar file included (xpp3-VERSION.jar) that contains _all_ files necessary to use...
Aleksander Slominski
as10m
Offline Send Email
Mar 29, 2003
4:18 pm
51
Hi all. Im new into XMLPULL, I dont speak english, im sorry I have a question about this API... Can I update an existing xml file? I mean, can I add an element...
ibanhoe
Offline Send Email
Mar 31, 2003
10:46 pm
Messages 22 - 51 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