Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
5answers
2k views

SAX parser vs XMLPull parser

I understand the difference between how the SAX parser works vs the XMLPull parser. In fact there's a pretty good explanation here: http://www.firstobject.com/xml-reader-sax-vs-xml-pull-parser.htm ...
4
votes
1answer
96 views

getting stringXmlContent and write then saved in to .xml file stored in sdcard in android how can possible?

I am implementing read and write xml in resource folder. Reading is ok, how can I modify this xml file save as sdcard: EditText myXmlContent = (EditText)findViewById(R.id.my_xml); String ...
4
votes
2answers
5k views

xml pull parser assets xml

How can i parse a local XML file in the assets folder using pull parser? I can't get pull parser to work. It always throws an io exception. I think I can't get the path to the file, or connecting to ...
3
votes
2answers
341 views

XmlPullParser get child nodes

I'm working with an OpenStreetMape (.osm) file with Android's XmlPullParser. The part I'm having problems with is this: <way id='-13264' action='modify' visible='true'> <nd ...
3
votes
1answer
276 views

Scala XML pull parser and location

I have been asked to write a utility to search a large number of XML files for elements with a missing attribute. The department responsible cannot just make the attribute mandatory in the DTD because ...
2
votes
1answer
231 views

calling magento web service from android client using kSoap2

i am trying to access a magento web service from a android client.which should return a session id.i hav already done this uing java client using apache and am successful in calling the method. How ...
1
vote
1answer
74 views

XMLPullParser parsing from internet in asynctask error in Android

I'm developing an application on the Android system which involves parsing some xml stuff. The problem is that the program is crashing and I've haven't found out the problem. I have an Activity which ...
1
vote
2answers
98 views

What pull parser implementation to use and when?

I need to use a xml pull parser. I can find stax-api.jar which seems to be already part of com.sun.xml.* and it seems that there is already something stax related implemented. com.sun.xml ...
1
vote
1answer
670 views

Parsing XML XmlPullParser android

i'm using xmlpullparser in android to parse an xml document that looks like : <top> <category> <name></name> <desc></desc> <songs> ...
1
vote
0answers
423 views

How to add header,username,password sharepoint webservice using ksoap in android

I am writing an Android application that will use the getlistitems() method of the lists.amx service in sharepoint 2010. I am using ksoap2-android to handle my soap messages. When I try to ...
1
vote
0answers
519 views

Android XML Pull Parser child nodes problem

My application includes two activities : 1st activity will contain set of buttons created dynamically from the xml file, when we click on these buttons 2nd activity starts. In 2nd activity i have ...
1
vote
0answers
245 views

getting XmlPullParserException when trying to connect to webservice GetCountryByCountryCode

i am getting this output when trying to connect to webservice org.xmlpull.v1.XmlPullParserException: unexpected type (position:END_DOCUMENT null@1:0 i[0.0] n ...
1
vote
1answer
224 views

Ignore SOAP tags in XML file

I have a XML file with some SOAP tags that I want to ignore. I was parsing the XML file with pull-parser but it stop working since that SOAP tags came along. The XML file looks something like: ...
1
vote
0answers
193 views

Getting alway 0 in XMLPullParser, While webservice contains value as float

I have a webservice for rating it return <Score>float</Score> while retrieving this using XML parser always return null[0]. I don't have any idea. My code is below: public static String ...
1
vote
0answers
486 views

Android XMLPullParser multiple passes through XML document

I'm trying to use XMLPullParser to parse a large XML document for an Android application. Often I need to re-traverse the document from the beginning. How would I reset the parser? It seems ...
1
vote
1answer
290 views

Indicating buffer size for XmlPullParser

I'm using XmlPullParser to load some data gradually over http on mobile devices. Since the speed of such connections can often be as low as 1KB/s or less, I would like to lower the default Buffer ...
1
vote
1answer
307 views

How can I use a resource within a custom Xml resource file?

I have an XML resource file: <resources> <section> <category value="1" resourceId="@xml/categoryData1" /> <category value="2" resourceId="@xml/categoryData2" ...
1
vote
2answers
187 views

XML Pull Parser implementation in Perl?

Just as the title asks: are there any XML pull parser implementations in a Perl library? I looked at XML::TokeParser, but it's nine years old! I'm sure there's something out there that is functional? ...
1
vote
1answer
896 views

Parsing RSS2.0 feeds using Pull Parser on Android

I am trying to parse a RSS2.0 feed, obtained from a remote server, on my Android device using XML Pull Parser. // get a parser instance and set input,encoding XmlPullParser parser = ...
1
vote
0answers
342 views

Convert XmlPullParser instance to XMLStreamReader instance

Short of it is I am using a 3rd party library to parse some xmpp messages. It is giving me an instance of XmlPullParser to parse an atom syndicate feed entity myself. I'd like to use the apache Abdera ...
0
votes
2answers
18 views

GWT Pull Parser Implementation?

I am working on a GWT project which has to run on phones, The project is required to parse large xml files and since phones are tight on memory i am refraining from using the XML DOm parger bundled ...
0
votes
1answer
19 views

How to Pull an RSS Feed using XmlPullParser in Android

I'm building an RSS reader APP, and I've been told to use the XMLPullParser interface. Here is the block of code I'm working with: XmlResourceParser parser = ...
0
votes
0answers
16 views

Basic XMLPullParser throwing Source LookUp Error.

This is a basic XMLPullParser class. It is called when the user wants a new question. There is an XML document full of questions. When the class is called, it is set to loop and replace the textview ...
0
votes
2answers
29 views

XmlPullParser for a xml on sdcard does not ignore whitespaces

I am reading the same XML using XmlPullParser either from embedded resource of the app or from SD. The problem is that when I read xml from resource whitespaces are ignored but for xml on sdcard are ...
0
votes
0answers
23 views

Android XmlPullParser does not recognise tags

my XmlPullParser/ XmlResourceParser is behaving weird. I want to read a XML file and work with certain tags, so here's my code: public Boolean readXml(){ try ...
0
votes
2answers
97 views

How to serialize xml in android from another xml changing hierarchy

I've got this source xml: <source> <category id="1" /> <item1 /> <item2 /> <category id="2"/> <item1 /> <item2 /> </source> As you can see ...
0
votes
2answers
93 views

Parsing with XmlPullParser from SDcard

what I'm doing wrong? InputStream in = new FileInputStream("/sdcard/new.xml"); XmlPullParser parser1 = Xml.newPullParser(); parser1.setInput(in, "utf-8"); ok. try parsing each tag of xml code ...
0
votes
0answers
60 views

XmlPullParser does not completely parse the file

i have xml Pull parser and XML file over 11 MB when i read this xml parses the file is not completely, but if i read small file <1MB all fine. NO error or something else this is my code: ...
0
votes
1answer
124 views

how to parse this custom xml in android using xmlpullparser

I've got this xml: <cars> <a b="car" c="blue"> <x year="01"/> <x year="03"/> </a> <a b="truck" c="red"> <x year="04"/> <x ...
0
votes
2answers
118 views

How to use DOM to read XML within Android applications correctly?

I'm able to get the information I want if the XML file is stored locally on my machine, but reading it when stored on the phone isn't working very well. I've tried XMLPullParser but it extracts ...
0
votes
0answers
65 views

Prob with KSOAP2 in 3G network: XmlPullParserException

I have used KSOAP2 for a web-service call. Here is my code: SoapSerializationEnvelope soapEnvelope = new SoapSerializationEnvelope( SoapEnvelope.VER11); soapEnvelope.dotNet = ...
0
votes
1answer
96 views

Parse xml using XmlPullParser and add result in an arraylist

<users type="array"> <user> <id>aOlXzSQQKr3749eJe5cbCb</id> <login>name1</login> <login_name ...
0
votes
2answers
127 views

Parse xml using XmlPullParser

i am working with android and using xmlpullparser in android to parse an xml document that is like: <spaces> <space> <name></name> <desc></desc> ...
0
votes
4answers
141 views

How to parse XML using XmlPullParser

I want to use the Java XmlPullParser to parse an XML file like this: <start> <tag1> text1 </tag1> <tag2> <tag3>text3</tag3> ...
0
votes
3answers
159 views

How to get a node value with XmlPullParser

Im trying to get values from an XML with the XmlPullParser but can't reach the values I want. The XML-structure is similar to the Android Strings.xml: <string name="value"> 1 </string> ...
0
votes
1answer
170 views

How can I write in an XML file?

I have a "config.xml" file in asset folder. I use the following code to read from it: public static String readAppConfigKey(Context context, String section, String key) { String value = ...
0
votes
2answers
111 views

Noob question about Android and XmlParser

I'm new to Android want to read a XML-file and write the content into a ListView The XML Parser must be the problem. I hope it is only a little mistake in my code. orderxml2.xml <?xml ...
0
votes
0answers
555 views

Android : XmlpullParser exception

I got stuck with a problem, In my program I am getting the xmlpullparser exception and I goggled it but as I am new to android I couldn't able to understand how to solve the issue. I corrected my ...
0
votes
1answer
202 views

XMLPullParser END TAG Error

I have a loose html img tag in some incoming RSS that I am parsing. Meaning there is no end tag. I have zero control of the incoming feed, so I'm stuck. Is there anyway I can skip this tag. ...
0
votes
1answer
508 views

XmlPullParser how to attain res/raw/xml/xmlfilename?

I am new to programming, so to start with correct me if I am wrong in the paragragh below : There is mainly three xml parsers for use in Android : Sax, Dom, and XmlPullParser. That last option, ...
0
votes
0answers
115 views

XMLPullParser on special characters

I'm writing an XML Parser on Android platform and it works fine. But now, the data that I parse has been changed on server-side, and it contains special characters like 'ö', 'ä', ... It looks to me ...
0
votes
1answer
289 views

Error while parsing XML using XMLPullParser in android?

I'm getting error while paring xml in android using XMLPullParser if the text contains special character like &. How can I solve this?
0
votes
0answers
311 views

android xmlpull parser error

I am getting an java.lang.UnsupportedOperationException when i try to parse the document(d.parse).Any suggestions why i m getting that error? thanks public static Document parseXML(String fileName) ...
0
votes
1answer
911 views

Android and .NET Webservice - parsing the returned xml

So I have done a few "minor" things with web services and had some success, but when I attempted to tinker around with some stuff for fun I was encountering what I believe is me incorrectly parsing ...
0
votes
1answer
412 views

Android - XML Pull parser from URL?

I have implemented XML Pull Parser for local XML file stored in Assets. I need to implement the same for XML in some destinated URL, how to pass URL to XML Pull parser? Thnks
0
votes
0answers
435 views

android xml pull feed parser & images

the following "working" code is part of a basic xml pull feed parser routine (based on the popular messagelist) parsing this fairly complex feed, the image chosen for this example is the "large" ...
0
votes
0answers
445 views

XMLPullParser Out of Memory (Android)

I'm stuck in trying to handle an out of memory error in Android while trying to parse a response from a HTTPTransfer using SOAP. Overall the transport is fine until I ask for a large image. The image ...
0
votes
2answers
146 views

i can't get getPrefix() or getNamespacePrefix() to work on android

I got an issue with my code with XmlPullParser and don't know if this is just me or a bug. i simply parse a xml file using xmlpullparser (like follow): XmlPullParserFactory factory = ...
0
votes
0answers
338 views

Need for Xmlpullparserproblem in android

Hai Everybody i am kamal and also i am new for android itry to connect my application program to access the soap webservice but i got the error of xmlpullparserexception expected starttag how do i ...
0
votes
1answer
714 views

XML Pull Parser error when declaration present

I'm trying to parse an xml document using the xml pull parser. Everything worked fine until i started dealing with an xml document containing an xxml declartation: When the declaration is there i ...

1 2