我创建了一个自定义soap标头,并通过IClientMessageInspector将其添加到我的消息中
public object BeforeSendRequest(ref System.ServiceModel.Channels.Message request, System.ServiceModel.IClientChannel channel)
{
var header = new MessageHeader<AuthHeader>();
header.Content = new AuthHeader(Key);
header.Actor = "Anyone";
var header2 = header.GetUntypedHeader("Auth", "xWow");
request.Headers.Add(header2);
return null;
}
[DataContract(Name="Auth")]
public class AuthHeader
{
public AuthHeader(string key)
{
this.Key = key;
}
[DataMember]
public string Key { get; set; }
}
我还有一个IDispatchMessageInspector,我可以在列表中找到正确的标题。但是,没有任何价值。我知道值正确地穿过了电线,因为消息字符串是正确的
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Header>
<Auth s:actor="Anyone" xmlns="xWow" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Key xmlns="http://schemas.datacontract.org/2004/07/xWow.Lib">HERE IS MY KEY VALUE!!!!</Key>
</Auth>
<To s:mustUnderstand="1" xmlns="http://schemas.microsoft.com/ws/2005/05/addressing/none">http://localhost:26443/AuthService.svc</To>
<Action s:mustUnderstand="1" xmlns="http://schemas.microsoft.com/ws/2005/05/addressing/none">http://tempuri.org/IAuthService/GetPayload</Action>
</s:Header>
<s:Body>
<GetPayload xmlns="http://tempuri.org/"/>
</s:Body>
</s:Envelope>
但似乎没有任何属性可以检索此值。 MessageHeaderInfo类有Actor等,但我找不到其他任何有用的东西。
在客户端,我不得不在Header和Untyped头之间进行转换,服务器上是否有相同的操作?
我找到了以下内容,这应该可行。
request.Headers.FindHeader("Auth", "xWow");
request.Headers.GetHeader<AuthHeader>(index);
如果我手动找到正确的索引并调用第二行,它将按预期工作。但是,FindHeader返回-1作为索引,即使我已在监视窗口中确认这些是名称和命名空间的正确值。
答案 0 :(得分:6)
request.Headers.FindHeader("Auth", "xWow");
request.Headers.GetHeader<AuthHeader>(index);
答案 1 :(得分:4)
HttpRequestMessageProperty requestProperty =
(HttpRequestMessageProperty)OperationContext.Current
.IncomingMessageProperties[HttpRequestMessageProperty.Name];
string contextToken = requestProperty.Headers["MyCustomHeader"];
答案 2 :(得分:1)
我认为你需要在函数FindHeader
上添加actor作为第三个参数