我使用这种简单的方法将用户名和密码附加到SOAP请求标头。这在Java边界内工作得很好,但我希望能够用我的WCF客户端调用它。我该怎么做呢?
我尝试了以下代码,但它不包括头中的凭据:
wsClient.ClientCredentials.UserName.UserName = "Hello";
wsClient.ClientCredentials.UserName.Password = "World";
提前感谢!
这是一种非常糟糕的非标准化方式。它使用自定义HTTP头,所以你不能指望内置的WCF机制会神奇地支持这种方法。WCF如何知道您想要将自定义非标准HTTP头添加到HTTP请求(而不是SOAP头)?
使用:
var proxy = new YourServiceClient();
using (var scope = new OperationContextScope(proxy.InnerChannel))
{
var prop = new HttpRequestMessageProperty();
prop.Headers.Add("UserName", "Hello");
prop.Headers.Add("Password", "World");
OperationContext context = OperationContext.Current;
context.OutgoingMessageProperties[HttpRequestMessageProperty.Name] = prop;
proxy.CallYourOperation();
}