我正在使用使用Mtom作为邮件编码的第三方WCF服务进行集成。
我已经创建了一个消息检查器行为,并且我能够通过调用request.ToString()
来查看消息请求“string”。但是,该消息似乎永远不会被mtom编码,并且不包含任何MIME部分。我假设Mtom编码稍后在通道管道中发生。我的问题是,有没有办法查看实际的传出消息而不管编码,因为它将通过网络发送到WCF服务?
以下是我正在使用的消息检查器:
public class InspectorBehaviorExtensionElement : BehaviorExtensionElement
{
public InspectorBehaviorExtensionElement()
{
}
public override Type BehaviorType
{
get
{
return typeof(InspectorBehavior);
}
}
protected override object CreateBehavior()
{
return new InspectorBehavior();
}
}
public class InspectorBehavior : IEndpointBehavior
{
public void AddBindingParameters(ServiceEndpoint endpoint, BindingParameterCollection bindingParameters)
{
}
public void ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime)
{
clientRuntime.MessageInspectors.Add(new MessageInspector());
}
public void ApplyDispatchBehavior(ServiceEndpoint endpoint, EndpointDispatcher endpointDispatcher)
{
}
public void Validate(ServiceEndpoint endpoint)
{
}
}
public class MessageInspector : IClientMessageInspector
{
public MessageInspector()
{
}
public void AfterReceiveReply(ref Message reply, object correlationState)
{
Debug.WriteLine("Received the following reply: '{0}'", reply);
}
public object BeforeSendRequest(ref Message request, IClientChannel channel)
{
Debug.WriteLine("Sending the following request: '{0}'", request);
return null;
}
}
答案 0 :(得分:1)
在BeforeSendRequest
之后应用AFAIK邮件编码。您可以使用WCF消息日志记录或fiddler来查看消息。