我正在开发 wp7 应用程序,我必须从网站获取 wcf 服务的服务参考。
但问题是,当我参考时,它会允许这样做,但客户端服务类不会显示在项目中,并且它也不允许创建服务合同的客户端对象。
以下是我的服务
public class Mobile : IViewUser, IViewCategory
{
[OperationContract]
public void DoWork()
{
}
[OperationContract]
public string Test(string data)
{
return data;
}
}
&这是我的 web.config 设置
<behavior name="Mobile.MobileBehavior">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="false" />
</behavior>
<service behaviorConfiguration="Mobile.MobileBehavior" name="BusinessFinder.Web.Services.Mobile">
<endpoint address="" behaviorConfiguration="webHttp" binding="webHttpBinding"
contract="BusinessFinder.Web.Services.IMobile" />
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
</service>
请任何人帮助我。