The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
17 views

Search child node in more efficient way in XMLPullParser 2.1.10

I am using XMLPullParser in java to parse one xml file with lots of nested child node as follows. <pt> <a>85</a> <B>03</B> <pd> <g> ...
-1
votes
2answers
15 views

Android: Fail to retrieving a tag value of the EWS response

I am hitting my Exchange server using (EWS+Basic Authentication). I could authenticate and hit my services with these Request GetItem (E-mail Message),SyncFolderItems and few other and getting the ...
0
votes
2answers
55 views

XmlPullParser getting all child values

How can I get child xml values ? I mean : If xml.getName() = Section give me its Sub values. I think I must use a while loop in it but I couldnt achieve it ! OR is it possible to get parent value ...
0
votes
1answer
22 views

SOAP call throwing XMLPullParser Exception only in real device

I'm using KSOAP2 library in my Android app to call a SOAP service. The code works fine in emulator with version 2.2. But when i try to run the app in my phone(HTC Wildfire) which is also 2.2, I'm ...
0
votes
1answer
29 views

Alternative to built-in XmlPullParser with good encoding support

I'm porting a project written for BlackBerry (Java) to Android. The project contains some xml parsing classes written against the org.xmlpull.v1.XmlPullParser interface. the actual parser instance is ...
0
votes
1answer
41 views

Pull Parsing local XML File in Android

I'm trying to parse specific parts of a local XML using pull-parsing however, I'm not sure how I read those parts. I'm using the code: package com.example.xmltest; import java.io.IOException; ...
1
vote
1answer
42 views

how to Consume Svc WCF service in android

Wsdl Url: http://xxx.xxx.xxx/UserService.svc I used Ksoap to hit service... This is my code: try { request = new SoapObject("http://tempuri.org/", "GetUserDetailsByUserName"); ...
0
votes
1answer
100 views

How to parse xml string with xmlpullparser android

I want to parse an XML string and display it in a EditText but I can't, I not understand what could be the problem, please a bit help, my code : private String xmlc = ...
0
votes
1answer
21 views

Android: XMLPullParser.END_DOCUMENT event never called

When trying to use XMLPullParser the XmlPullParser.END_DOCUMENT event is never called thus code that is suppose to be executed after while loop is never executed. How can I prevent this from ...
0
votes
1answer
48 views

XmlPullParser: get inner text including XML tags

Suppose you have an XML document like so: <root> That was a <b boldness="very">very bold</b> move. </root> Suppose the XmlPullParser is on the opening tag for root. Is ...
1
vote
1answer
52 views

XMLPullParser not reading tags like <hours/>

Below is my xml, I am going to parse it using xmlpullparser. Each time parser reads values from tags like "<hours>Monday: 1:00 PM - 3:00 PM Thursday: 8:30 AM - 12:30 PM</hours>", (this ...
0
votes
1answer
33 views

Find tag by attribute and read all his children

I have this xml file: <?xml version="1.0" encoding="UTF-8"?> <Products> <Product productName="testProduct1"> <Fields> <Field name="Stack" /> ...
0
votes
1answer
33 views

Parsing XML file returns null

I am trying to parse an XML file with XMLPullParser. My code is as follows: try { XmlPullParserFactory factory = XmlPullParserFactory.newInstance(); factory.setNamespaceAware(true); ...
1
vote
1answer
90 views

How to get XML content with matching tags in Pull Parser for Android?

I am trying to use the Pull Parser in Android to get values of image2 and image3. <item> <title>Title Goes Here!</title> ...
0
votes
1answer
31 views

Android: ParsingXMLFiles only gets the values for the first XML

Hi I have designed a File Explorer which I use to show some XML files and depending on the selected one I open one XML or another. Until the moment there is no problem at all and with the help of ...
0
votes
0answers
67 views

Web Service SAP with Android: XmlPullParserException

I have a problem trying to connect a Web Service made in SAP with Android. I know That are already a lot of questions with this Thread, but I tried a lot of solutions and nothing worked. I'm having ...
0
votes
1answer
76 views

Xmlpullparser parsing nested items

Hi I am making an app that will access the ebay api via xml to search for items I have followed the guide Android developer guide XMLPullParser to use Pull parser and I am able to parse basic xml ...
0
votes
1answer
78 views

Downloading an XML file from a web server Android

I am developing an application for college that connects to a web server and reads data from an XML on the server. The appilcation is working but I am currently trying to really break down the code ...
0
votes
1answer
113 views

Android Pull Parser from url.xml

I have searched for two days now, I probably have seen a solution that would solve my problem, though I have yet to find one I understand. I am following this tutorial - Simple XMLPullParser Tutorial ...
0
votes
3answers
101 views

XmlPullParser get file from filesystem

I my app creater xml file in Android file system. I ned parse this file with XmlPullParser, but I get error wile compilation: "variable parser might not have been initialized". My code: InputStream ...
1
vote
2answers
113 views

Android :Parse XML Data: Tags with arguments

I want to parse an XML file i exported from a database software, for my android app. However some of the tags have arguments like so: <row> <value column="Index" ...
1
vote
2answers
133 views

net.sqlcipher.database.SQLiteException: not an error:

I am getting this error in my android app db. In SQLite database i am getting database query from my scripts in assets folder with the help of this code. manager = ...
0
votes
3answers
98 views

Android: Best parser to parse XML data

I am developing an application in which the first time I am going to parse data from an xml file coming from a remote server. But i am not able to select which parser is efficient or best suited for ...
0
votes
1answer
47 views

XmlPullParser from ftp with username and password

im using XmlPullParser and it works great. Now to the problem, i need to read an xml file on a ftp server on my web hotel. I have try to use the username and password in the url but it dosent seems to ...
0
votes
0answers
53 views

Parse XML with different XML files

Hi all, I have some classes in order to parse an XML file. The 3 different elements at the file I put them into 3 different lists. This function works well but I need to read different XML files ...
0
votes
1answer
61 views

Android JUnit and parsing xml data - what to test

I am trying to get more experience on JUnit and its usage in Android. Referring to this official Android training Parsing XML data I wonder if anyone can provide with an example on how to test some ...
0
votes
1answer
370 views

KXmlParser throws “Unexpected token” exception at the start of RSS pasing

I'm trying to parse an RSS feed from Monster on Android v.17 using this URL: http://rss.jobsearch.monster.com/rssquery.ashx?q=java To get the content I'm using HttpUrlConnection in the following ...
1
vote
2answers
129 views

Illegal Argument Exception when parsing XML file

I am trying to pull the XML file which can be seen here: http://feeds.pcworld.com/pcworld/latestnews This is my MainActivity public class MainActivity extends ListActivity { ...
0
votes
1answer
610 views

Android XmlPullParser - how to parse this XML sample file?

I've got simple XML file. <Parent id=1> <Child>1</Child> <Child>2</Child> </Parent> <Parent id=2> <Child>3</Child> <Child>4</Child> ...
0
votes
0answers
117 views

XmlPullParser Android easier way?

I am working on a project where I want to make an application dynamicly. I want to do this with working with an xml file where all templates are defined so I can parse them and apply them to the ...
0
votes
2answers
70 views

Reading a xml file from Sdcard not works

I am trying to read a xml file from sdcard but it not works .Blank activity is loaded and the TextView is empty. if i remove the code to read xml and just set text as t.setText("hello"); it works ...
-2
votes
1answer
33 views

XmlPullParser with base64encode tag

I am parsing xml packet using XmlPullParser. I am able to parse base64encode tag. My issue here is "I am not able to read full base64encode data. Only part of it is able to read". boolean done = ...
1
vote
1answer
149 views

Parse complex XML using XmlPullParser

I need to parse this XML using XmlPuppParser <lfm status="ok"> <events xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" artist="Armin van Buuren" festivalsonly="0" page="1" ...
1
vote
1answer
76 views

Is there a pull-style JSON StreamReader parser for .NET?

I need to deserialize from a JSON StreamReader, without instantiating intermediate objects for every object in that stream. JSON.NET invoked like JsonConvert.DeserializeObject<T>(string json, ...
0
votes
1answer
213 views

Android exception org.xmlpull.v1.XmlPullParserException: expected: START_TAG <html>

I have been trying to consume a .NET webservice ( HelloWorld method to test first) , using practicly the same code that worked for another webservice . public class MainActivity extends Activity { ...
0
votes
2answers
465 views

How to parse complex XML using XmlPullParser

Hi guys I have problem with xml parsing. I'm trying to parse using XmlPullParser XML looks like: <lfm status="ok"> <topartists user="dailz" type="overall" page="1" perPage="50" ...
1
vote
1answer
45 views

Android-PullParser returns different string-type?

Here's my code: String Attr = parser.getAttributeValue(null, "name"); String Text = parser.getText(); if (Attr == "id"){ parser.nextTag(); }else ...
0
votes
1answer
107 views

how to make InputStream for local xml file

I'm beginner android app developer. I'm going to parse xml file saved in local storage. But I don't have idea how to make InputStream. Please tell me some advice. pre-Thanks!! ... APP_LOCAL_DIR ...
0
votes
0answers
257 views

Android XML pull parser slow, how to speed up?

I wrote an XML parser, using XmlPullParser, however it takes a lot of time to parse a few hundred lines of data. Can you take a look at the code and tell me what am I doing wrong? case ONE: ...
1
vote
1answer
459 views

SOAP Android pullparser exception expected a quoted string

I am trying to get this http://www.apniurdu.com/Soap.html web service running on Android. private static final String cMETHOD_NAME = "Translate"; private static final String cSOAP_ACTION = ...
0
votes
1answer
214 views

Make XmlPullParser ignore whitespace?

I am parsing Xml with an XmlPullParser. I just want to deal with the Xml tags and the text contained within them however, the XmlPullParser reads in the whitespace text (spaces and carriage returns) ...
1
vote
1answer
263 views

Read xml using XmlPullParser

I've the following xml file inside the /mnt/sdcard. I want to get the version of the item type=provider from the following file. The file is big(1500 lines) which has other types also. This is ...
3
votes
1answer
113 views

Why is Android XmlPullParser REALLY slow on my older device?

I have implemented a simple XML parser using the official Android guide on the XmlPullParser to parse a very simple and short XML file (120 lines, 10.5Kb). On my HTC One X running Android 4.1.1, it ...
1
vote
1answer
97 views

Receive large XML object

My application receives some data from server in XML form. I parse it using XmlPullParser. Everything works fine. Until server sends large nested object - bitmap or file in BASE64 encoding (up to ...
2
votes
1answer
98 views

How to pass an xml documents as a input to android xml pullparser

In my application the user can download an XML file witch is stored on the internal memory. Is there a way to pass this file given its absolute path to a XMLPullParser ?
0
votes
0answers
103 views

Create a base class for xmlpullparser utility in android

i have some problem with parsing XML using xmlpullparser API for android Problem: i have a lot of duplication in android classes like Activity or some business class for xml parser but its a same!!! ...
0
votes
0answers
212 views

Parsing Android Xmlpullparser

Im new in Android development. I have a task to parse XML from current url http://belbooner.site40.net/testXmls/details.xml I made a class to make it possible package com.example.asd; import ...
1
vote
0answers
591 views

Android XML parsing using XMLPullParser

I have a task to parse one XML file by using XMLPullParser with current url http://belbooner.site40.net/testXmls/details.xml I've created class that's parsing document and im getting this result in ...
0
votes
1answer
294 views

XMLPullParserException when trying to call wcf web service

I'm having problems connecting to my web service. I've followed a couple of tutorials, especially http://drclawx.wordpress.com/2011/06/24/77/ and created a simple Wcf Hello World web service. I've ...
2
votes
1answer
208 views

Best way to extract a node and all of its children using scala.xml.pull?

I'm using scala.xml.pull to parse through a vary large xml file. This works great for event processing, but what I want to do is have my parser cough up a mini-document for particular nodes and I ...

1 2 3 4