我的代码使用WCF使用第三方REST服务。服务接口声明如下:
[ServiceContract(Namespace = "SomeNamespace",
ConfigurationName = "SomeName")]
public interface ICoolService
{
[OperationContract]
[WebInvoke(Method = "POST", UriTemplate = @"whatever")]
void CoolMethod(InputContainer input);
}
其中InputContainer
被声明为DataContract
:
[DataContract(Namespace = "whatever")]
public class InputContainer : IExtensibleDataObject
{
//[DataMember]s inside
}
我的代码实例化使用WebChannelFactory
来实例化“通道对象”,然后通过“通道对象”调用服务
ServiceEndpoint endpoint = ...craft endpoint;
var factory = new WebChannelFactory<IServiceManagement>( endpoint );
var service = factory.CreateChannel();
service.CoolMethod( new InputContainer() );
并且效果很好。
现在出现问题......该服务的文档说该服务返回一个x-some-cool-header
和空体的响应。
如何获取该响应标头的值(最好是CoolMethod()
的返回值)?
答案 0 :(得分:0)
最简单的方法是更改接口声明,使方法返回System.ServiceModel.Channels.Message
:
[OperationContract]
[WebInvoke(Method = "POST", UriTemplate = @"whatever")]
Message CoolMethod(InputContainer input);
然后一旦方法调用完成,你会得到一个Message
对象,其中包含带有标题的HTTP响应:
var invokationResult = service.CoolMethod( new InputContainer() );
var properties = message.Properties;
var httpResponse =
(HttpResponseMessageProperty)properties[HttpResponseMessageProperty.Name];
var responseHeaders = httpResponse.Headers;
var coolHeader = reponseHeaders["x-some-cool-header"];