Reputation: 11
I provide a remote tool to other websites through web service in WCF. Now I want to provide same remote tool to Android Apps. My question is: Can Android apps consume my WCF web services (hosted on webserver) or do I need to change something.
Upvotes: 1
Views: 1619
Reputation: 364269
You have WCF service and you want to consume it from Android application. First of all your service must be interoperable. In case of Android client you should use either basicHttpBinding
(SOAP service) or webHttpBinding
(REST service).
Upvotes: 3