gpt4 book ai didi

wcf - 如何在回调方向扩展 WCF?

转载 作者:行者123 更新时间:2023-12-04 03:09:34 24 4
gpt4 key购买 nike

我可以将使用行为的 IParameterInspector 附加到 ClientRuntime 中的每个操作以及服务端 DispatchRuntime 中的每个操作。但这似乎只适用于从客户端到服务。

我还希望能够在从服务到客户端的回调中附加一个 IParameterInspector,如上所述,但是我找不到任何可扩展点来执行此操作。

有什么想法吗?

最佳答案

这有点晦涩难懂,似乎没有完整的文档记录,但您可以使用标准 WCF 行为功能自定义两端。

在客户端,这个属性会实现它。

public class InspectorBehaviorAttribute : Attribute, IEndpointBehavior
{
public void AddBindingParameters(ServiceEndpoint endpoint, System.ServiceModel.Channels.BindingParameterCollection bindingParameters)
{
}

public void ApplyClientBehavior(ServiceEndpoint endpoint, System.ServiceModel.Dispatcher.ClientRuntime clientRuntime)
{
foreach (var item in clientRuntime.CallbackDispatchRuntime.Operations)
{
item.ParameterInspectors.Add(ParameterInspector.Instance);
}
}

public void ApplyDispatchBehavior(ServiceEndpoint endpoint, System.ServiceModel.Dispatcher.EndpointDispatcher endpointDispatcher)
{
}

public void Validate(ServiceEndpoint endpoint)
{
}
}

只需将此属性应用于实现回调接口(interface)的类。

在服务器上,它变得有点棘手。您需要通过 ApplyDispatchBehavior 进行连接。在这种情况下,我是通过服务行为完成的,但原则也适用于 OperationBehaviors 和 EndpointBehaviors。

public class InspectorBehaviorAttribute : Attribute, IServiceBehavior
{
public void AddBindingParameters(ServiceDescription serviceDescription, ServiceHostBase serviceHostBase, System.Collections.ObjectModel.Collection<ServiceEndpoint> endpoints, System.ServiceModel.Channels.BindingParameterCollection bindingParameters)
{
}

public void ApplyDispatchBehavior(ServiceDescription serviceDescription, ServiceHostBase serviceHostBase)
{
foreach (var item in serviceHostBase.ChannelDispatchers.OfType<ChannelDispatcher>())
{
foreach (var ep in item.Endpoints)
{
foreach (var op in ep.DispatchRuntime.CallbackClientRuntime.Operations)
{
op.ParameterInspectors.Add(ParameterInspector.Instance);
}
}
}
}

public void Validate(ServiceDescription serviceDescription, ServiceHostBase serviceHostBase)
{
}
}

同样,只需将此属性应用于您的服务实现,即可让您的参数检查器用于所有回调操作。

虽然这些示例演示了连接 IParameterInspector 实现,但可以使用适用于所有其他 WCF 扩展点的相同方法在客户端和服务器上自定义回调 channel 。

关于wcf - 如何在回调方向扩展 WCF?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7590934/

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