Is it possible to impersonate a client's identity when invoking a netTcp endpoint operation via configuration? There is a section within the WCF config client as shown below:
<client>
<endpoint address="net.tcp://localhost:8081/tcpExample" binding="netTcpBinding"
bindingConfiguration="myTcpBinding" contract="TestTcp.IHelloTcp"
name="NetTcpBinding_IHelloTcp">
<identity>
<userPrincipalName value="[email protected]" />
</identity>
</endpoint>
</client>
My client doesn't fail, it seems like the identity attached to the client is the current logged in user, i.e. me.