gpt4 book ai didi

WCF 跨多个客户端共享 IClientMessageInspector 实例

转载 作者:行者123 更新时间:2023-12-05 00:17:51 29 4
gpt4 key购买 nike

在通过标题“集中式 cookie 管理”下概述的方法进行 WCF 服务调用时,我正在管理一个共享的身份验证 cookie:http://megakemp.com/2009/02/06/managing-shared-cookies-in-wcf/

我已经设置了一个自定义的 IClientMessageInspectorIEndpointBehaviorBehaviorExtensionElement,一切正常。我的端点行为添加了一个消息检查器,如下所示:

public class MyEndpointBehavior : IEndpointBehavior
{
public void AddBindingParameters(ServiceEndpoint endpoint, System.ServiceModel.Channels.BindingParameterCollection bindingParameters)
{
}
public void ApplyClientBehavior(ServiceEndpoint endpoint, System.ServiceModel.Dispatcher.ClientRuntime clientRuntime)
{
// yuck.. Wish I had an instance of MyClientMessageInspector
// (which has the auth cookie already) so I could just inject that
// instance here instead of creating a new instance
clientRuntime.MessageInspectors.Add(new MyClientMessageInspector());
}
public void ApplyDispatchBehavior(ServiceEndpoint endpoint, System.ServiceModel.Dispatcher.EndpointDispatcher endpointDispatcher)
{
}
public void Validate(ServiceEndpoint endpoint)
{
}
}

这一切都完美,但当您希望在多个客户端上共享 cookie 时,此解决方案就会崩溃。因为 ApplyDispatchBehavior() 方法创建了一个新实例,所以任何其他客户端都不会获得该消息检查器实例,因此也不会获得授权票证。

然后我想到尝试创建一个自定义构造函数,我可以像这样注入(inject)实例:

MyEndpointBehavior(MyClientMessageInspector msgInspector) { ... }

但是,WCF 需要无参数构造函数。通过互联网,WCF 具有允许依赖注入(inject)的 Hook ,创建 IInstanceProviderIServiceBehavior 等。但我认为这不是我在这里寻找的.

谁能帮我指引正确的方向?

最佳答案

您只需要扩展概念,以便将 cookie 存储在消息检查器本身之外,以便消息检查器的所有实例共享相同的存储空间。

穷人的方式,只是开始,将只使用静态字段而不是实例字段。显然,如果您有多个线程,则需要在更新字段时提供并发性。如果您将其外推到 cookie 容器概念,然后确保您与所有客户端共享同一容器,那么您可以从那里变得更加奇特。共享容器可以通过获取客户端 channel 的 ChannelParameterCollection 并向其添加属性来完成,然后您的行为会在检查消息并从中提取 cookie 时查找该属性。这看起来有点像这样:

应用逻辑

// Hold onto a static cookie container
public static CookieContainer MyCookieContainer;

// When instantiating the client add the cookie container to the channel parameters
MyClient client = new MyClient();
client.InnerChannel.GetProperty<ChannelParameterCollection>().Add(MyCookieContainer);

消息检查器逻辑

public void BeforeSendMessage(ref Message, IClientChannel clientChannel)
{
// Find the cookie container for the current channel
CookieContainer cookieContainer = clientChannel.GetProperty<ChannelParameterCollection>().Select(p => p as CookieContainer).Where(cc => cc != null).First();

// ... use the cookie container to set header on outgoing context ...
}

关于WCF 跨多个客户端共享 IClientMessageInspector 实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6157246/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com