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 549291
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T11:10:08+00:00 2026-05-13T11:10:08+00:00

I have a web application using Kerberos to access an external resource useing ASP.NET

  • 0

I have a web application using Kerberos to access an external resource useing ASP.NET 3.5 and IIS.

When a user connects with the application, Kerberos authentication auto-magically allows me to connect to external resources acting as the user using delegation. This was not easy to do. It is nice, but I’ve a problem. Sometimes I need to connect to an external resource using an account with more rights than the user. The service account which the app-pool is running under has the addition rights I need. How can I remove the user’s Kerberos identification and connect with Kerberos using the service account running the application pool?

UPDATE

I’m not sure why I am getting no responses at all. I’ve never seen that before. Please post questions, they may clarify the problem (to me too).


Woring in Kerberos and need an overview of delegation? Read the first part of this answer: https://stackoverflow.com/a/19103747/215752.

  • 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-13T11:10:09+00:00Added an answer on May 13, 2026 at 11:10 am

    I have a class:

    public class ProcessIdentityScope : IDisposable
    {
        private System.Security.Principal.WindowsImpersonationContext _impersonationContext;
        private bool _disposed;
    
        public ProcessIdentityScope()
        {
            _impersonationContext = System.Security.Principal.WindowsIdentity.Impersonate(IntPtr.Zero);
        }
    
        #region IDisposable Members
    
        public void Dispose()
        {
            Dispose(true);
            GC.SuppressFinalize(this);
        }
    
        protected virtual void Dispose(bool disposing)
        {
            if (!_disposed)
            {
                _impersonationContext.Undo();
                _impersonationContext.Dispose();
                _disposed = true;
            }
            else
                throw new ObjectDisposedException("ProcessIdentityScope");
        }
    
        #endregion
    }
    

    And I use it like so:

    using(ProcessIdentityScope identityScope = new ProcessIdentityScope())
    {
        // Any code in here runs under the Process Identity.
    }
    

    This code is based on this MSDN article: http://msdn.microsoft.com/en-us/library/ms998351.aspx

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

Sidebar

Ask A Question

Stats

  • Questions 297k
  • Answers 297k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer imo, the best way to do this is to solve… May 13, 2026 at 7:18 pm
  • Editorial Team
    Editorial Team added an answer Bullet points 1 and 2 are easy (or at least,… May 13, 2026 at 7:18 pm
  • Editorial Team
    Editorial Team added an answer Looking at the gedit plugin API, it looks like gedit.Document… May 13, 2026 at 7:18 pm

Related Questions

We have a brand new SharePoint 2007 Intranet farm running on new 64-bit hardware
I have an application that is served using jetty 6.1.12 from serverA. serverA is
I have a web application using ASP.NET 2.0 and I want to know if
I have a web application using JPA and JTA with Spring. I would like
I have a Web application using spring and hibernate and struts (it runs on

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.