I need to explore for my project use of web services on Android. I know that there is no official library for XML - RPC web service.
But there is for REST XML and i need to test it.
I would like to read XML on my web page (Where i have to pass username and Password) from Android with HTTP GET.
OR
Suppose, i follow This link, then where do i pass username and password?
Can anybody help me on this.
This link helped me to get started understanding how to HTTP GET XML and Parse using the SAX Parser.
http://www.anddev.org/parsing_xml_from_the_net_-_using_the_saxparser-t353.html
Hope this helps,
iTom
A few lines of code for HTTP Basic Auth, if you mean this.
Where "Base64Converter" is a utility class converts a string to its Base64 compiled form. Do this before the openConnection() call in parsingxml.java, line 36.