06-17-05 07:52 AM
The error code 2148074252 translated into hexadecimal is 0x8009030C , which
if you look up with any Win32 error lookup tool (Visual Studio comes with
such a viewer) means "The logon attempt failed". Basically, it means that
the username/password used for authentication did not match.
The failure occurred on access for this URL:
/aspnet_client/system_web/1_1_4322/WebUIValidation.js
Thus, you need to look in IIS configuration for this website to verify:
1. What authentication is applicable for the URL:
/aspnet_client/system_web/1_1_4322/WebUIValidation.js
2. If it is anonymous, then make sure that the configured Anonymous
username/password is in sync with the local SAM (or AD if you are using a
domain account for the anonymous user).
The application pool identity should not affect this situation unless the
following conditions apply (all documented in the same section that
introduces how to configure IIS6 application pool identity -- you do read
documentation, yes?):
1. Server is in a domain
2. Integrated Authentication is enabled and used by the client to
authenticate
3. The user identity has been customized from the default value of Network
Service
4. SETSPN (mentioned in documentation) has not be configured correctly
--
//David
IIS
http://blogs.msdn.com/David.Wang
This posting is provided "AS IS" with no warranties, and confers no rights.
//
"Mike" <announ@tkd.net> wrote in message
news:e9t5iPmcFHA.1404@TK2MSFTNGP09.phx.gbl...
Thanks David,
Here is the log file from the web server....
Thanks for your help
Mike
"David Wang [Msft]" <someone@online.microsoft.com> wrote in message
news:OYmUrUhcFHA.220@TK2MSFTNGP12.phx.gbl...
> Please give the actual web log entries corresponding to your failure to
> authenticate. All of them.
>
> Should be in the form of 401.x -- I want to know the specific "x" as well
> as
> the accompanying Win32 error code.
>
> --
> //David
> IIS
> http://blogs.msdn.com/David.Wang
> This posting is provided "AS IS" with no warranties, and confers no
> rights.
> //
> "Mike" <announ@tkd.net> wrote in message
> news:e90LVXacFHA.1456@TK2MSFTNGP15.phx.gbl...
> I made the changes to the web.config file and re-synced the IUSR password
> and it made no difference whatsoever.
>
> Don't know where to turn next...
>
>
> "Vitor" <vitor.m.o@gmail.com> wrote in message
> news:1118695321.217121.306350@g14g2000cwa.googlegroups.com...
> Mike,
>
>
> Your web.config file states that all authenticated users are authorized
> for browsing the web site. In order to alow anonymous browsing you must
> add another element.
>
> Here´s a sample:
>
> <authorization>
> <allow users="*" /> <!-- Grant access to known users -->
> <allow users="?" /> <!-- Grant access to unknown users -->
> </authorization>
>
>
>
> Mike wrote:
>
****************************************
************************************[vbc
ol=seagreen]
>[/vbcol]
****************************************
************************************[vbc
ol=seagreen]
>
>
>[/vbcol]
[ Post a follow-up to this message ]
|