I have a wcf data service which authenticates the user with custom basic authentication. I used the tutorial on MSDN Blogs OData and Authentication – Part 6 – Custom Basic Authentication. So after authenticating the user against a database, the service sets
var principal = new GenericPrincipal( new GenericIdentity("user") );
HttpContext.Current.User = principal;
Within my service I can access the principals auth status via
HttpContext.Current.Request.IsAuthenticated
Is there also a chance to get the IsAuthenticated status on my WPF client?