I try to consume a wcf service hosted on an iis with a simple java client.
my service is a basicHttpService.
now my Question. What do i need in java to access the service methods?
i build a little example:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.Text;
using System.ServiceModel.Web;
namespace android.Web
{
[ServiceContract]
public interface ITestService
{
[OperationContract]
void DoWork();
[WebGet(UriTemplate = "Login/")]
String Login();
}
}
the login Method only returns a simple string that want to test in my java client. I tried some tutorials found in the internet, but nothing wokrs ;)
thx alot.