メッセージエンコーディングとしてMtomを使用しているサードパーティのWCFサービスと統合しています。メッセージインスペクターの動作を作成しました。を呼び出すことでメッセージリクエストの「文字列」を表示できますがrequest.ToString()
、メッセージが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;
}
}