Fixed Impersonation vs Current login user

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default Fixed Impersonation vs Current login user

    I have a ASp.NET application which performs a http request to another
    web site on the same server but different virtual directory. when i
    set impersonate = true and a fixed account, the http request is done
    with that account. when leave the account blank (current login user)
    then the request fails because he has no account. integrated
    authentication is on, on both virtual directories.
    please some help!

    regards,

    Roan Schuurman
    Roan Schuurman Guest

  2. Similar Questions and Discussions

    1. user and admin login on same login page
      Hello, I have a user login page which also doubles as my administrator login. Currently, my method of logging in doesnt seem to be working...
    2. login going to the current url
      hi i have a login transaction on a page, this page has url parameters passed through it, so when the user logs in i want he/she to be taken back...
    3. Default user for Impersonation
      What user does the system default to if I have <identity impersonate="true"/> in my web.config file? Authentication mode= "None" Thank-you
    4. Login to LDAP using current credentials
      Hello, Here is my situation. I have developed several apps that require authentication to access. For authentication, I have the users enter...
    5. Suppress login dialog when impersonation on?
      Does anyone know how I can suppress the "Enter Network Password" dialog when attempting to enumerate directories and/or files in ASP.NET? I want...
  3. #2

    Default Re: Fixed Impersonation vs Current login user

    You have a double-hop authentication issue I think.

    With IWA, IIS doesn't have the user's username/password - only a token,
    which isn't sufficient to construct a new HTTP request passing credentials.

    I think you'll need to configure delegation. Here are some links:


    [url]http://support.microsoft.com/default.aspx?scid=kb;en-us;810572[/url]
    HOW TO: Configure an ASP.NET Application for a Delegation Scenario

    [url]http://support.microsoft.com/?id=294382[/url]
    Authentication May Fail with "401.3" Error If Web Site's "Host Header"
    Differs from Server's NetBIOS Name

    [url]http://support.microsoft.com/default.aspx?kbid=325894[/url]
    HOW TO: Configure Computer Accounts and User Accounts So That They Are
    Trusted for Delegation in Windows Server 2003 Enterprise Edition (also
    includes Windows 2000 instructions)

    [url]http://www.microsoft.com/resources/documentation/WindowsServ/2003/standard/proddocs/en-us/Default.asp?url=/resources/documentation/WindowsServ/2003/standard/proddocs/en-us/se_con_del_computer.asp[/url]
    Configuring Users and Computers for delegation (there's a couple of pages -
    use the links in the nav bar to get to them)

    Windows 2003 Protocol Transition
    [url]http://www.microsoft.com/technet/prodtechnol/windowsserver2003/technologies/security/constdel.mspx[/url]


    Cheers
    Ken


    "Roan Schuurman" <roan_schuurman@hotmail.com> wrote in message
    news:3547a0e2.0405110734.4d69a1d5@posting.google.c om...
    : I have a ASp.NET application which performs a http request to another
    : web site on the same server but different virtual directory. when i
    : set impersonate = true and a fixed account, the http request is done
    : with that account. when leave the account blank (current login user)
    : then the request fails because he has no account. integrated
    : authentication is on, on both virtual directories.
    : please some help!
    :
    : regards,
    :
    : Roan Schuurman


    Ken Schaefer Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139