I have following configuration: ASP.NET website that hosts Silverlight application and separate WCF Service project that hosts Authentication Service and other business services. Website and WCF services are hosted as separate applications on IIS.
The goal is to authenticate user via Authentication Service and provide auth token (cookie issued by Auth service) with all subsequent requests to be able to authenticate user and get his/her credentials using OperationContext.ServiceSecurityContext. Is it even possible? If so, how?
Currently, I set aspNetCompatibilityEnabled to true to gain access to HttpContext, and get user credentials from User property. But I'm a bit concerned about performance involving all requests into ASP.NET pipeline, moreover there is no other reasons to do that. As follow-up question - do you know about any performance drawbacks enabling aspNetCompatibilityEnabled?