我创建了一个 Windows 服务,它的工作是在同一个项目中启动一个 WCF 服务。现在我在同一个解决方案的一个项目中有一个 Windows 客户端。我已成功在客户端上添加了服务引用,但是当我在使用中键入服务引用时,如下所示,它无法识别。有人知道这里发生了什么吗?我已经尝试过很多次了。我正在使用 Visual Studio 2012。我之前在 2010 年成功使用过 WCF(并不是说这是问题所在)
客户代码
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Serv....... //************ The reference is not recognized
namespace Validstate_Client
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
}
}
}
客户端应用程序.Config
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IService2" />
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:8733/Design_Time_Addresses/ValidStateService/Service2/"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IService2"
contract="ServiceReference2.IService2" name="BasicHttpBinding_IService2" />
</client>
</system.serviceModel>
</configuration>