I\'m pretty green with web services and WCF, and I\'m using Windows integrated authentication - how do I get the username on the server-side interface? I believe that I\'m s
To get the WCF Service caller username:
var callerUserName = ServiceSecurityContext.Current.WindowsIdentity.Name;