![]() |
|
|
|||||||
![]() |
ASP Net - Login failed for user 'machinename\ASPNET' |
|
|
Thread Tools | Search this Thread |
|
|
#1 |
|
H
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 200 Regard =?Utf-8?B?TWFuZGFyIFBhdGls?= |
|
|
|
|
#2 |
|
Posts: n/a
|
Sounds 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" <> wrote in message news:53A0B172-A63A-4EF0-AE6E-... > 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 > Cowboy |
|
|
|
#3 |
|
Posts: n/a
|
ASPNET is not user on the machine and machinename\ASPNET is also not the SQL server instance.
=?Utf-8?B?TWFuZGFy?= |
|
|
|
#4 |
|
Posts: n/a
|
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" <> wrote in message news:53A0B172-A63A-4EF0-AE6E-... > 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 > Donald E. Hurley Jr. |
|
|
|
#5 |
|
Posts: n/a
|
That is the problem. Add this user logon to SQL Server
"Mandar" <> wrote in message news:844DBEFB-9D61-4010-92C9-... > ASPNET is not user on the machine and machinename\ASPNET is also not the SQL server instance. Jeff Dillon |
|
|
|
#6 |
|
Posts: n/a
|
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/de...SecNetHT01.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 <> wrote: >ASPNET is not user on the machine and machinename\ASPNET is also not the SQL server instance. Scott Allen |
|
|
|
#7 |
|
Posts: n/a
|
Thanks
I changed the sql server authentication to SQL authentication Mandar =?Utf-8?B?TWFuZGFy?= |
|
![]() |
| Thread Tools | Search this Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Preload ur windows desktop Before login | Abbas | Software | 0 | 08-29-2006 03:06 PM |
| Re: Can't login to XP Pro machine | jjw | A+ Certification | 2 | 10-19-2004 12:36 AM |
| Re: Can't login to XP Pro machine | Solomon Kozanski | A+ Certification | 5 | 09-25-2004 05:24 PM |
| Re: Can't login to XP Pro machine | Gary | A+ Certification | 3 | 09-22-2004 10:17 PM |
| Re: Can't login to XP Pro machine | Jonathan Miles | A+ Certification | 0 | 09-22-2004 01:27 AM |