我尝试使用一个简单的 java 客户端来使用托管在 iis 上的 wcf 服务。
我的服务是一个基本的HttpService。
现在我的问题。我在 java 中需要什么来访问服务方法?
我建立了一个小例子:
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();
}
}
login 方法只返回一个想要在我的 java 客户端中测试的简单字符串。我尝试了一些在互联网上找到的教程,但没有任何工作;)
多谢。