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

  • Home
  • SEARCH
  • 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 984513
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T05:01:42+00:00 2026-05-16T05:01:42+00:00

Can someone point me to a [relatively] simple walk-through on how to properly configure

  • 0

Can someone point me to a [relatively] simple walk-through on how to properly configure an ASP.Net hosted WCF 4.0 service to impersonate the credentials of a caller for just certain methods of the service, but allow anonymous access to other methods?

I’ve been reading a lot about this on MSDN, but the more I read, the more confused I get. Maybe I’m just a dunce, but this seems a lot harder than it should be 🙁

I have looked through the posts here on SE, but none seem to point to an end-to-end sample or tutorial. There is a WCF guidance document on CodePlex, but it seems hopelessly out of date, and hasn’t been updated since 2008.

Any help here would be GREATLY appreciated.

  • 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-16T05:01:42+00:00Added an answer on May 16, 2026 at 5:01 am

    This can be done via the OperationBehaviorAttribute.Impersonation property

    [ServiceContract]
    interface ISelectiveImpersonationExample
    {
        [OperationContract]
        void ThisUsesImpersonation();
    
        [OperationContract]
        void ThisDoesNotUseImpersonation();
    }
    
    
    // Implementation
    class SelectiveImpersonationExampleImpl : ISelectiveImpersonationExample
    {
        [OperationBehavior(Impersonation=ImpersonationOption.Required)]
        public void ThisUsesImpersonation()
        {
            // ...
        }
    
        [OperationBehavior(Impersonation=ImpersonationOption.NotAllowed)]
        public void ThisDoesNotUseImpersonation()
        {
            // ...
        }
    }
    

    Make sure that you do not set the service’s behavior’s ImpersonateCallForAllOperations value to true. If you do, the ThisDoesNotUseImpersonation function will throw an InvalidOperationException.

    I’m going on theory here, and haven’t actually done it in real life. If it doesn’t work please let me know.

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

Sidebar

Related Questions

Hoping someone can point me in the right direction. I'm relatively new to TCL
can someone point me to some methods for perspective ray casting. I have seen
Can someone point me to an article that shows the dropdownlist being populated from
Can someone point me to some tutorial on how to set up a ping
Can someone point out a couple of good quality tutorials/pages for donut caching? Like
Can someone point me in the right direction of some information on using: <%#
Can someone point me to a decent RPC tutorial for (or books) linux, like
It seems to me this should match just fine. Can someone point out to
Can someone please point me out a hash function (preferably an implementation) which would
Can someone please point me to instructions for installing the latest Indy10 in Delphi

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.