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

How do I restrict access of a remotely-accessible WCF endpoint to a local/domain administrator?


Edit: After adding [PrincipalPermission(SecurityAction.Demand, Name = "AdminUser")] to my WCF channel method implementation, trying to call the service method from my client throws a SecurityAccessDeniedException, which is progress.

How do I let Windows prompt the user for new user details (or a security token) so I can reinitiate the WCF connection as the correct user?

share|improve this question

1 Answer

up vote 1 down vote accepted

You can do this with the PrincipalPermissionAttribute added to the methods declared in your WCF service.

See this link: How to: Restrict Access with the PrincipalPermissionAttribute Class

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.