Hi
I am getting following error:
Login failed for user 'machinename\ASPNET'
when tryiong to do the following:
SqlDataAdapter1.Fill(DataSet11)
This user is never specified in the database and never mentioned anywhere in
the code. I am creating sqldataadapter with wizard in VB Dot net 2003
RegardsSounds like you are using Windows Security on your SQL Server instead of
mixed mode. In this instance, it would take the logged in user and attempt
to log on to SQL as that person. YOu would then get this error.
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
****************************************
********
Think Outside the Box!
****************************************
********
"Mandar Patil" <anonymous@.discussions.microsoft.com> wrote in message
news:53A0B172-A63A-4EF0-AE6E-6F1E4AB518EF@.microsoft.com...
> Hi
> I am getting following error:
> Login failed for user 'machinename\ASPNET'
> when tryiong to do the following:
> SqlDataAdapter1.Fill(DataSet11)
> This user is never specified in the database and never mentioned anywhere
in the code. I am creating sqldataadapter with wizard in VB Dot net 2003
> Regards
>
ASPNET is not user on the machine and machinename\ASPNET is also not the SQL
server instance.
That is the problem. Add this user logon to SQL Server
"Mandar" <anonymous@.discussions.microsoft.com> wrote in message
news:844DBEFB-9D61-4010-92C9-0C600FBA1379@.microsoft.com...
> ASPNET is not user on the machine and machinename\ASPNET is also not the
SQL server instance.
The ASPNET account is the default user for ASPNET.
Are you trying to connect to the database with Integrated security, or do
you specify a username/pass.
If you try to use integrated security and you have anonymous access turned
on, it will use the ASPNET account to try to connect to SQL Server. Try
specifing a UserName/Password.
IE.
packet size=4096;integrated security=SSPI;data source=dhurley3;persist
security info=False;initial catalog=Northwind
or
packet size=4096;user id=sa;data source=dhurley3;persist security
info=False;initial catalog=Northwind;password=pass;
Hope this helps.
"Mandar Patil" <anonymous@.discussions.microsoft.com> wrote in message
news:53A0B172-A63A-4EF0-AE6E-6F1E4AB518EF@.microsoft.com...
> Hi
> I am getting following error:
> Login failed for user 'machinename\ASPNET'
> when tryiong to do the following:
> SqlDataAdapter1.Fill(DataSet11)
> This user is never specified in the database and never mentioned anywhere
in the code. I am creating sqldataadapter with wizard in VB Dot net 2003
> Regards
>
Mandar:
In this case you have several options:
- use a "mirrored" local account on the SQL machine, meaning you'll
create an ASPNET account on the SQL machine, synchronize passwords for
the ASPNET account on the web server and SQL machine, and give the
ASPNET account the ability to login to SQL. There is a more detailed
description of how to do this in the following document:
Building Secure ASP.NET Applications: Authentication, Authorization,
and Secure Communication
http://msdn.microsoft.com/library/d.../>
NetHT01.asp
- run the ASP.NET worker process in the context of a user who can
access SQL
- use mixed mode authentication (pass a uid and password in the
connection string)
HTH,
Scott
http://www.OdeToCode.com
On Wed, 26 May 2004 13:21:13 -0700, Mandar
<anonymous@.discussions.microsoft.com> wrote:
>ASPNET is not user on the machine and machinename\ASPNET is also not the SQL server
instance.
Thanks!
I changed the sql server authentication to SQL authentication.
Mandar
Saturday, March 24, 2012
Login failed for user 'machinename\ASPNET'
Labels:
achinename,
asp,
aspnet,
errorlogin,
failed,
following,
hii,
login,
machinename,
net,
tryiong,
user
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment