我创建了一个测试 WCF 服务 WcfSampleLib,其合同为 IWcfSampleLib,并且服务类为 clsWcfSampleLib。
namespace WcfSampleLib
{
public class clsWcfSampleLib:IWcfSampleLib
{
public string getMsg(string name)
{
return " HI " + name;
}
}
[ServiceContract]
public interface IWcfSampleLib
{
[OperationContract]
string getMsg(string name);
}
}
现在我添加了一个窗口窗体应用程序来托管我的 WCF。我创建了一个 App.config 作为
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior name="Beh">
<serviceMetadata httpGetEnabled="true" httpGetUrl="http://{server}:9097"/>
</behavior>
</serviceBehaviors>
</behaviors>
<services>
<service name ="WcfSampleLib.clsWcfSampleLib" behaviorConfiguration="Beh">
<endpoint address="http://{server}:9096/SomeName" binding="basicHttpBinding" contract ="WcfSampleLib.IWcfSampleLib"/>
<endpoint address="net.tcp://{server}:9095/SomeName1" binding="netTcpBinding" contract ="WcfSampleLib.IWcfSampleLib"/>
</service>
</services>
</system.serviceModel>
</configuration>
我有两个端点来使用来自具有不同端点的两个不同客户端的 WCF。我在 Host Application 的 Form1_Load 事件中添加了以下代码行
host = new ServiceHost(typeof(WcfSampleLib.clsWcfSampleLib));
host.Open();
MessageBox.Show("started");
现在我只能使用 http://{server}:9097 添加服务引用。有什么办法可以让我可以使用具有不同 URL 的两个端点意味着 net.tcp://{server}:9095/SomeName1 和 http://{server}:9096/SomeName