Can anyone help me on how to call a C# WCF web service from Android Studio. My webservice is "http://192.168.1.100:93/MyService.svc?wsdl"
MyService.svc
namespace MyServiceApp
{
public class MyService : IMyService
{
public string Hello(string strName)
{
string strResult="";
strResult = "Hello " + strName;
return strTest;
}
}
}
IMyService.cs
namespace MyServiceApp
{
[ServiceContract]
public interface IMyService
{
[OperationContract]
string Hello(string strName);
}
}