I have a ASP.NET MVC page, which call WCF logic.
The system is single-signon using NTML. Both the ASP page and the WCF will use the UserIdentity to get user login information.
Other then NTML, I will also have a Form based authorization (with AD) in same system.
The ASP page, is it simple and I can have it from HttpContext.Current.Request.LogonUserIdentity.
However, it seem it is missing from the WCF which call by the ASP, not from browser.
How to configure to pass the ID pass from the ASP to the WCF?