我正在使用 ServiceDescriptionImporter 从 wsdl 动态(运行时)生成 Web 服务客户端。
在我尝试调用需要身份验证的服务(基本)之前,一切都很好。我找不到任何方法将基本身份验证标头添加到我生成的客户端发送的请求中。
我尝试了以下方法,但它不起作用。我仍然得到一个 401:
var webClient = obj as HttpSoapClientProtocol;
CredentialCache mycache = new CredentialCache();
// Credentials are specified here
mycache.Add(new Uri("http://localhost:9999/MyService"), "Basic", new NetworkCredential("username", "password"));
webClient.Credentials = mycache;
如何向 webClient (HttpWebClientProtocol) 添加 HTTP 标头?
/安德烈亚斯