I have a WCF client that sends messages signed and encrypted to webservice.
How can I save the outgoing SOAP message at the state where it is already signed but not yet encrypted?
I have already written an interceptor:
public class myOutputMessageInspector
{
internal class OutputMsgInterceptor : IClientMessageInspector, IDispatchMessageInspector
{
private readonly bool Online;
private readonly bool LogMessages;
private readonly String OutFileName;
private readonly String InFileName;
public OutputMsgInterceptor(String outFileName, String inFileName, bool doLog, bool isOnline)
{
this.Online = isOnline;
LogMessages = doLog;
this.OutFileName = outFileName;
this.InFileName = inFileName;
}
public object BeforeSendRequest(ref Message request, IClientChannel channel)
{
SaveMessage(ref request, OutFileName);
return null;
}
public void AfterReceiveReply(ref Message reply, object correlationState)
{
SaveMessage(ref reply, InFileName);
}
private void SaveMessage(ref Message message, string filename)
{
if (LogMessages && !String.IsNullOrEmpty(filename))
{
// Create a buffer.
MessageBuffer buffer = message.CreateBufferedCopy(Int32.MaxValue);
// Set the request reference to an unspoiled clone.
message = buffer.CreateMessage();
// Make another unspoiled clone to process (taint) locally within this method.
Message originalMessage = buffer.CreateMessage();
// Log the SOAP xml.
FileStream fileStream = new FileStream(@filename, FileMode.Create);
StreamWriter m_streamWriter = new StreamWriter(fileStream);
m_streamWriter.BaseStream.Seek(0, SeekOrigin.End);
m_streamWriter.Write(originalMessage.ToString());
m_streamWriter.Flush();
}
}
#region IDispatchMessageInspector Members
public object AfterReceiveRequest(ref Message request, IClientChannel channel, InstanceContext instanceContext)
{
throw new NotImplementedException();
}
public void BeforeSendReply(ref Message reply, object correlationState)
{
throw new NotImplementedException();
}
#endregion
}
internal class OutputMsgBehavior : IEndpointBehavior
{
private readonly bool enabled;
private readonly bool Online;
private readonly bool LogMessages;
private readonly String OutFileName;
private readonly String InFileName;
internal OutputMsgBehavior(bool enabled, String outFileName, String inFileName, bool doLog, bool isOnline)
{
this.enabled = enabled;
this.OutFileName = outFileName;
this.InFileName = inFileName;
Online = isOnline;
LogMessages = doLog;
}
public void Validate(ServiceEndpoint endpoint)
{
}
public void AddBindingParameters(ServiceEndpoint serviceEndpoint,
BindingParameterCollection bindingParameters)
{
}
public void ApplyClientBehavior(
ServiceEndpoint endpoint,
ClientRuntime clientRuntime)
{
if (false == enabled)
{
return;
}
myOutputMessageInspector.OutputMsgInterceptor interceptor =
new myOutputMessageInspector.OutputMsgInterceptor(OutFileName,InFileName,LogMessages,Online);
clientRuntime.MessageInspectors.Add(interceptor);
}
public void ApplyDispatchBehavior(
ServiceEndpoint endpoint,
EndpointDispatcher endpointDispatcher)
{
if (false == enabled)
{
return;
}
myOutputMessageInspector.OutputMsgInterceptor interceptor =
new myOutputMessageInspector.OutputMsgInterceptor(OutFileName, InFileName, LogMessages, Online);
endpointDispatcher.DispatchRuntime.MessageInspectors.Add(interceptor);
}
}
}
I do add like:
var factory = new ChannelFactory<myPort>(customBinding);
factory.Endpoint.Behaviors.Add(new myOutputMessageInspector.OutputMsgBehavior(true, "Request_Decrypted.xml", "Response_Decrypted.xml", LogMessages, Online));
Actually this seems to work fine. But when you look at Request_Decrypted.xml, it is the SOAP message before it is signed and encrypted and looking at Response_Decrypted.xml, it is the response SOAP message decrypted but still signed.
I have set security binding like:
asymmetricSecurityBindingElement.MessageProtectionOrder = MessageProtectionOrder.SignBeforeEncrypt
So: how do I get the request SOAP message in the state already signed but still uncrypted?