Calling a WCF from ASP.NET with same the single-signon user LogonUserIdentity

Posted by Dennis Cheung on Stack Overflow See other posts from Stack Overflow or by Dennis Cheung
Published on 2010-03-12T07:50:38Z Indexed on 2010/03/12 7:57 UTC
Read the original article Hit count: 256

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?

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about wcf