Problem with authentication when using Windows XP in IIS5

Ask a Question related to ASP, Design and Development.

  1. #1

    Default Problem with authentication when using Windows XP in IIS5

    I have a page that authenticates users by reading
    Request.ServerVariables("AUTH_USER") and
    Request.ServerVariables("AUTH_TYPE"). When users try to access this
    page from windows NT/2000, it works fine (prompts them for their
    credentials when they're not on the same domain, and then lets them
    in). Now, some of the users got XP boxes, and can't get in to the
    page. It prompts them for their credentials but when they enter them,
    just keeps prompting them. The credentials they are entering are
    correct. What is different on XP that is causing this problem and is
    there any setting I can modify on the server side to prevent this from
    happening. Any ideas would be greatly appreciated.
    Thanks.
    Julie Guest

  2. Similar Questions and Discussions

    1. CF to IIS5 authentication based on cf app userid/pass
      I have a CF application on a standalone win2k server with IIS 5. Currently, we use a cf to authenticate users and set session variables to allow...
    2. [REPOST] Problem in Windows based Authentication
      Hello All, I use windows based authentication for my ASP.NET web app. I have disabled anonymous access of my web application too from the IIS...
    3. ASP.NET (IIS 6.0) Windows authentication/SQL Server problem
      Hi, On Windows 2000, I use the following connection string in my ASP.NET applications: <add key="ConnectionString"...
    4. ASP.Net Windows Authentication problem = Login dialog keeps popping up
      I'm using Windows Authentication in my C# ASP.Net intranet application. I have a "Delete" column in a DataGrid which I only want displayed if the...
    5. Windows-based Authentication problem.
      Hi, I need to grant access to a NT usergroup and to 3 other users that are not in that group. here is my web.config. <authentication...
  3. #2

    Default Re: Problem with authentication when using Windows XP in IIS5

    If they aren't part of the domain, they should precede the appropriate
    username with the domain, as in...
    username: Domain\Tom
    password: mysupersecretpassword


    "Julie" <julzie245@yahoo.com> wrote in message
    news:3b169031.0307230720.29d5c298@posting.google.c om...
    > I have a page that authenticates users by reading
    > Request.ServerVariables("AUTH_USER") and
    > Request.ServerVariables("AUTH_TYPE"). When users try to access this
    > page from windows NT/2000, it works fine (prompts them for their
    > credentials when they're not on the same domain, and then lets them
    > in). Now, some of the users got XP boxes, and can't get in to the
    > page. It prompts them for their credentials but when they enter them,
    > just keeps prompting them. The credentials they are entering are
    > correct. What is different on XP that is causing this problem and is
    > there any setting I can modify on the server side to prevent this from
    > happening. Any ideas would be greatly appreciated.
    > Thanks.

    TomB Guest

  4. #3

    Default Re: Problem with authentication when using Windows XP in IIS5

    XP is probably loading the page as the FQDN of the machine instead of just
    the netbios name, assuming that's how the users are accessing your site.
    Like, XP looks at [url]http://computername[/url] as [url]http://computername.domain.com[/url].
    The FQDN with the .'s in the name will put IE in the Internet zone, in which
    IE will not send logon credentials automatically, by default.

    You can add an entry to the XP machines' hosts files, or you can remove the
    DNS entry for that server and disable DNS updates for it, and then resolve
    the name via WINS, if you still have a WINS server on your network.

    I think you could also create a new DNS master record with just the computer
    name and IP if you only have DNS internally.

    Ray at work

    "Julie" <julzie245@yahoo.com> wrote in message
    news:3b169031.0307230720.29d5c298@posting.google.c om...
    > I have a page that authenticates users by reading
    > Request.ServerVariables("AUTH_USER") and
    > Request.ServerVariables("AUTH_TYPE"). When users try to access this
    > page from windows NT/2000, it works fine (prompts them for their
    > credentials when they're not on the same domain, and then lets them
    > in). Now, some of the users got XP boxes, and can't get in to the
    > page. It prompts them for their credentials but when they enter them,
    > just keeps prompting them. The credentials they are entering are
    > correct. What is different on XP that is causing this problem and is
    > there any setting I can modify on the server side to prevent this from
    > happening. Any ideas would be greatly appreciated.
    > Thanks.

    Ray at 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