객체 지향 방식으로 모든 WCF 호출에 사용자 지정 HTTP 헤더를 추가하려면 더 이상 보지 마십시오.
Mark Good 및 paulwhit의 답변에서와 IClientMessageInspector
같이 사용자 지정 HTTP 헤더를 WCF 요청에 주입하려면 서브 클래스가 필요합니다 . 그러나 추가하려는 헤더가 포함 된 사전을 수락하여 검사기를보다 일반적으로 만들 수 있습니다.
public class HttpHeaderMessageInspector : IClientMessageInspector
{
private Dictionary<string, string> Headers;
public HttpHeaderMessageInspector(Dictionary<string, string> headers)
{
Headers = headers;
}
public object BeforeSendRequest(ref Message request, IClientChannel channel)
{
// ensure the request header collection exists
if (request.Properties.Count == 0 || request.Properties[HttpRequestMessageProperty.Name] == null)
{
request.Properties.Add(HttpRequestMessageProperty.Name, new HttpRequestMessageProperty());
}
// get the request header collection from the request
var HeadersCollection = ((HttpRequestMessageProperty)request.Properties[HttpRequestMessageProperty.Name]).Headers;
// add our headers
foreach (var header in Headers) HeadersCollection[header.Key] = header.Value;
return null;
}
// ... other unused interface methods removed for brevity ...
}
Mark Good과 paulwhit의 답변 에서처럼 WCF 클라이언트 에 서브 클래스 IEndpointBehavior
를 주입 하려면 서브 클래스가 필요합니다 HttpHeaderMessageInspector
.
public class AddHttpHeaderMessageEndpointBehavior : IEndpointBehavior
{
private IClientMessageInspector HttpHeaderMessageInspector;
public AddHttpHeaderMessageEndpointBehavior(Dictionary<string, string> headers)
{
HttpHeaderMessageInspector = new HttpHeaderMessageInspector(headers);
}
public void ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime)
{
clientRuntime.ClientMessageInspectors.Add(HttpHeaderMessageInspector);
}
// ... other unused interface methods removed for brevity ...
}
객체 지향 접근 방식을 완성하는 데 필요한 마지막 부분은 WCF 자동 생성 클라이언트의 하위 클래스를 만드는 것입니다 (저는 Microsoft의 WCF 웹 서비스 참조 안내서를 사용했습니다). WCF 클라이언트를 생성하기 를 사용했습니다).
제 경우에는 API 키를 x-api-key
HTML 헤더 .
서브 클래스는 다음을 수행합니다.
- 필요한 매개 변수를 사용하여 기본 클래스의 생성자를 호출합니다 (제 경우에는
EndpointConfiguration
생성자가 전달할 열거 형이 생성되었습니다-아마도 구현에 없을 것입니다)
- 모든 요청에 첨부해야 할 헤더를 정의합니다
AddHttpHeaderMessageEndpointBehavior
클라이언트의 Endpoint
행동 에 첨부
public class Client : MySoapClient
{
public Client(string apiKey) : base(EndpointConfiguration.SomeConfiguration)
{
var headers = new Dictionary<string, string>
{
["x-api-key"] = apiKey
};
var behaviour = new AddHttpHeaderMessageEndpointBehavior(headers);
Endpoint.EndpointBehaviors.Add(behaviour);
}
}
마지막으로 클라이언트를 사용하십시오!
var apiKey = 'XXXXXXXXXXXXXXXXXXXXXXXXX';
var client = new Client (apiKey);
var result = client.SomeRequest()
결과 HTTP 요청은 HTTP 헤더를 포함해야하며 다음과 같습니다.
POST http://localhost:8888/api/soap HTTP/1.1
Cache-Control: no-cache, max-age=0
Connection: Keep-Alive
Content-Type: text/xml; charset=utf-8
Accept-Encoding: gzip, deflate
x-api-key: XXXXXXXXXXXXXXXXXXXXXXXXX
SOAPAction: "http://localhost:8888/api/ISoapService/SomeRequest"
Content-Length: 144
Host: localhost:8888
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<SomeRequestxmlns="http://localhost:8888/api/"/>
</s:Body>
</s:Envelope>