-1

I have created an android webservicce client. When i call the webservice, certain operations happen on my webservice which produces various xml files. How can i access those xml files in my android code?

Sudhakar Samak
  • 389
  • 4
  • 15

2 Answers2

0

You can use http://simple.sourceforge.net/ Saxparser or xml pull parser

playmaker420
  • 1,527
  • 4
  • 27
  • 52
0

First create a Method on you REST to return a download-url to the XML-Files on the server. The ServerSide implementation depends on the REST you are using (Java, C#, ....)

Then use this URL to download the Files onto your Android device. Like here.

Community
  • 1
  • 1
JDurstberger
  • 4,127
  • 8
  • 31
  • 68