Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.