I have a self-hosted (console app for the time being) WCF application that needs to be hosted on a machine that is separate from the clients - So there is no security link via a Windows Domain between the server and clients.
What options are there for using Message-level security with this set-up? A colleague has told me that the communication will work if I set Security.Mode = SecurityMode.None on the TCP binding but this is not ideal. Am I right in thinking that no encryption of data takes place if SecurityMode.None is set on the binding?
Any help on this is greatly appreciated.