WCF如何创建连接到同一个服务实例的两个通道
Posted
技术标签:
【中文标题】WCF如何创建连接到同一个服务实例的两个通道【英文标题】:WCF how to create two channels connected to the same service instance 【发布时间】:2012-01-20 11:04:42 【问题描述】:我在使用 WCF 服务实例时遇到了一些问题。
ChannelFactory<IMyInterface> factory = new ChannelFactory<IMyInterface>(new NetTcpBinding(), new EndpointAddress("net.tcp://localhost:8000"));
IMyInterface iFirst = firstFactory.CreateChannel();
iFirst.firstMethod();
IMyInterface iSecond = firstFactory.CreateChannel();
iSecond.secondMethod();
它工作正常,但在服务器端创建了两个服务类实例。
InstanceContextMode
设置为 InstanceContextMode.PerSession
,我想保持这种状态。我找到了这篇文章:
http://msdn.microsoft.com/en-us/magazine/cc163590.aspx#S4
Duplicating a Proxy
部分是图 5 复制代理。我似乎是完美的解决方案,但 IClientChannel
不再包含 ResolveInstance()
方法。有没有其他方法可以在不将InstanceContextMode
设置为InstanceContextMode.Single
的情况下创建连接到一个服务实例的两个通道?
【问题讨论】:
也许你想完成你在这里发布的第一个问题***.com/questions/8504059/… 【参考方案1】:IClientChannel.ResolveInstance 方法已替换为新的扩展点 System.ServiceModel.Dispatcher.IInstanceContextProvider 接口。
此处描述了更改:http://blogs.msdn.com/b/mahjayar/archive/2006/07/08/660176.aspx - 也许您可以实现该接口以获得您想要实现的目标。
【讨论】:
以上是关于WCF如何创建连接到同一个服务实例的两个通道的主要内容,如果未能解决你的问题,请参考以下文章
使用 C++ API 将 mq 客户端连接到具有加密通道的 mq 服务器
是否可以使 WcfTestClient 为自定义传输通道工作?