gpt4 book ai didi

WCF OutgoingMessageHeaders 不保存值

转载 作者:行者123 更新时间:2023-12-04 05:51:42 32 4
gpt4 key购买 nike

我正在尝试将 MessageHeader 写入 OutgoingMessageHeaders,但值不固定。

BasicHttpBinding basicHttpBinding = new BasicHttpBinding();
EndpointAddress endpointAddress = new EndpointAddress("http://localhost:1003/Client.svc");

IClientService serviceClient = new ChannelFactory<IClientService>(basicHttpBinding, endpointAddress).CreateChannel();

// attempt 1
using (OperationContextScope scope = new OperationContextScope(serviceClient as IContextChannel))
{
OperationContext.Current.OutgoingMessageHeaders.Add(MessageHeader.CreateHeader("SessionId","","ABC"));
}

// attempt 2
using (OperationContextScope scope = new OperationContextScope(serviceClient as IContextChannel))
{
OperationContext.Current.OutgoingMessageHeaders.Add(MessageHeader.CreateHeader("SessionId","","ABC"));
}

好的,您可以看到我设置了两次 OutgoingMessageHeaders 但这只是为了证明一点。在第二次尝试中,在我进行实际添加之前,我检查了 OperationContext.Current.OutgoingMessageHeaders。我希望这有一个条目。但它是零。一旦它离开使用范围,该值就会丢失。

当它流向服务器时,它说它找不到消息头,表明就其而言它也没有被保存。

为什么我的 MessageHeader 不固定?

杰夫

最佳答案

using block 的末尾调用 dispose 并重置之前的 OperationContext。

因此,您需要在 OperationContextScope 中调用类似这样的服务。

        using (OperationContextScope scope = new OperationContextScope(serviceClient as IContextChannel))
{
OperationContext.Current.OutgoingMessageHeaders.Add(MessageHeader.CreateHeader("SessionId", "", "ABC"));
serviceClient.CallOperation();
}

关于WCF OutgoingMessageHeaders 不保存值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1399005/

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