Hi
First of all I’m new to WCF. I developed a simple client and a service hosted in an application domain. I use netTcpBinding as Binding in the host and client application’s configurations. In want to use the WCF logging mechanism in order to see that the message is encrypted when using netTcpBinding instead of basicHttpBinding. So, in order to log the data I used the XmlWriterTraceListener and the following configurations:
<diagnostics>
<messageLogging logEntireMessage="true"
maxMessagesToLog="300"
logMessagesAtServiceLevel="false"
logMalformedMessages="false"
logMessagesAtTransportLevel="true" />
</diagnostics>
When looking at the log file it seems that the message is transmitted in clear text as when using basicHttpBinding. Why is this actually happening? I expected an encrypted message. Do I forgot something?
Thanks!
George Homorozeanu