In my Application, I create on Client-side my own Principal-Object, which i set like
Thread.CurrentPrincipal = myPrincipal;
Now, when I call a WCF-Service (TCP/IP), I should also have this Principal in the Server-side Thread of this called WCF-Service. Is there something that I can configure to do this, or does I have to implement this myself?
Thanks for your hints.