Access denied for IUSER

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

  1. #1

    Default Access denied for IUSER

    Hi all, I look after an intranet site. Our server is Windows 2000 running IIS
    5. Access to pages on our intranet has always been done using the Anonymous
    Account. When I user the Iuser it give me Access denied error
    In my web.config I set up the access like

    <system.web>
    <authorization>
    <allow roles="domain\Administrator"
    users=” domain \Iuser" />
    <deny users="*" />
    </authorization>


    </system.web>

    and it is not working

    thanks

    --
    sharif
    Sharif Guest

  2. Similar Questions and Discussions

    1. One With Access Denied, Another With Access, But NotFull
      I'm suddenly having access denied/permission problems through Contribute on every page after the templates and their related pages were updated with...
    2. Web Service + Anon Access, but getting 401 Access Denied Error
      I have a simple webservice that just returns a string. The security for this is set to windows authentication in IIS (XP Professional) and anonymous...
    3. Access denied when creating Access application object
      In an ASP file I am running the following in VBScript in order to extract data from an Access 2002 MDB file which is physically located in the...
    4. access denied on data access pages
      I have created data access pages that worked well when I tried them on two separate computer simutaneously, but when we went into production we got...
    5. 'Access is Denied'
      I am using Windows XP Pro, and I set up my profile as the administrator and protected 'login' w/ password. A few weeks ago, the registry file got...
  3. #2

    Default Re: Access denied for IUSER

    the iuser account shouldn't be a domain account, but a computer level account. But you are specifying it like a domain account in web.config.

    I don't honestly see why you need to configure web.config like this though, if it is anonymous, it will always hit your application with the same exact credentails. Usually you configure these types of authorizations when you have windows or forms authentication where different accounts with different levels of security can interact with your site differently.

    --Michael

    "Sharif" <sharif42@hotmail.com> wrote in message news:49CC60F4-A3EA-465E-A1DD-0FBB7F9FF563@microsoft.com...
    > Hi all, I look after an intranet site. Our server is Windows 2000 running IIS
    > 5. Access to pages on our intranet has always been done using the Anonymous
    > Account. When I user the Iuser it give me Access denied error
    > In my web.config I set up the access like
    >
    > <system.web>
    > <authorization>
    > <allow roles="domain\Administrator"
    > users=” domain \Iuser" />
    > <deny users="*" />
    > </authorization>
    >
    >
    > </system.web>
    >
    > and it is not working
    >
    > thanks
    >
    > --
    > sharif
    Raterus 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