Is it possible to consume Task based async WCF web service methods from Android? Any sample code will be appreciated. I could not find any Android sample when I googled.
Edit:
I would specifically like Android to consume a WCF service like below.
[ServiceContract]
public interface IMessage
{
[OperationContract]
Task<string> GetMessages(string msg);
}