Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 448727
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T21:41:55+00:00 2026-05-12T21:41:55+00:00

I have a WCF service which uses netTcp binding and transport security. It uses

  • 0

I have a WCF service which uses netTcp binding and transport security. It uses Windows authentication (default).

Everything is working smoothly but I want to ensure that only a select windows user account can use this service instead of everyone in the domain.

Is there any way to accomplish this such that select user accounts can be written in config file and service will use them (rules out using attributes)?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T21:41:55+00:00Added an answer on May 12, 2026 at 9:41 pm

    You cannot do this in config – but since you’re using Windows authentication, you could easily use the ASP.NET role providers – either based on Active Directory / Windows domain role membership, or based on the ASP.NET build-in role/membership database.

    With this, you could then use declarative syntax to limit callers to certain groups:

    [ServiceContract]
    interface IMyService
    {
       [OperationContract]
       [PrincipalPermission(SecurityAction.Demand, Role="YourCustomRole")]
       public string MethodLimitedToGroup(string someInput);
    }
    

    Anyone who is not member of that group you specified, and tries to call this method, will receive a SecurityException – but nothing else.

    You can also limit to a specific set of actual user names – not recommended, though – too complicated, too restrictive, in general:

    [ServiceContract]
    interface IMyService
    {
       [OperationContract]
       [PrincipalPermission(SecurityAction.Demand, Name="User1")]
       [PrincipalPermission(SecurityAction.Demand, Name="User2")]
       public string MethodLimitedToGroup(string someInput);
    }
    

    You can define all of this in config:

    <behaviors>
      <serviceBehavior>
         <behavior name="WinAuth">
            <serviceAuthorization principalPermissionMode="Windows" />
         </behavior>
      </serviceBehavior>
    </behaviors>
    

    and then simply assign that service behavior to your service in your config:

    <service name="YourService" behaviorConfiguration="WinAuth"> ......
    

    If you want to use the ASP.NET supplied membership/role database, specify

            <serviceAuthorization principalPermissionMode="UseAspNetRoles" />
    

    instead.

    Marc

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working with a WCF service in Azure, which uses Windows Live ID authentication
We have a simple WCF (on .NET 4.0) Service which uses Windows authentication and
I have a windows service that hosts a WCF service which uses a sql
I have a wcf webhttp service which uses forms authentication to authenticate users. This
I have silverlight 2.0 application and which uses WCF service to get data and
I have created a wcf service which is deployed via a managed windows service.
I'm working with a WCF service I wrote a few years back, which uses
Say I have a web project which uses a WCF service for behind-the-scenes processing,
I have been working on a WCF service which will return a Base64 encoded
I'm working on a bigger project which uses WCF data service and OData to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.