If you mean that you want to reach a web service from a phone, then hopefully the web service is not SOAP-based. REST-ful web services are more lightweight than SOAP and a better fit for Android. If you have control over the design of the web services, go with that. If you're forced to use SOAP, then take a look at kSOAP2. Within your activity you can create an HttpClient to interact with web services. HttpClient is documented in the Android SDK Reference pages. Information is also available in books and blog posts, etc.
- dave On Nov 7, 9:10 am, rubeN_vl <[email protected]> wrote: > I'm aware of that > > On 7 nov, 15:07, Mark Murphy <[email protected]> wrote: > > > > > > > rubeN_vl wrote: > > > i want to run a webservice on a Android phone. > > > Why? It's not going to be reachable, except on a local WiFi network, and > > even then only if somebody knows the IP address of the phone. > > > -- > > Mark Murphy (a Commons > > Guy)http://commonsware.com|http://twitter.com/commonsguy > > > _Android Programming Tutorials_ Version 1.0 In Print! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

