views:

148

answers:

2

dear friends,

i am new to Android development i have a web service made in php now i want to consume it in android can any one guide me how to achieve this..???

i have tried many code samples on net but failed to achieve this goal. i am using Eclipse with ADT.

any help would be appriciated.

A: 

Android is developed using Java platform. what you should do is create a WebService and expose the WSDL via HTTP.

write your java program calling this Webservice.

its easier and simpler.

coder
could you please give me example of that?? or a sample code.??
UMMA
+1  A: 

Kindly go through the following link. you will find code examples here http://www.anddev.org/calling_a_web_service_from_android-t348.html

Funkyidol