Trusted sql connection failure

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

  1. #1

    Default Trusted sql connection failure

    Hi all

    I have a asp.net application, developed in Beta 2. It is working fine when
    the project is stored in a web file system mode. I had to switch to work in a
    local IIS mode, and at this mode I'm failing to connect to the database
    (MSSql). This is the message in the SqlException: Login failed for user
    '(null)'. Reason: Not associated with a trusted SQL Server connection.

    Thnx
    AZ
    Arie Guest

  2. Similar Questions and Discussions

    1. Reason: Not associated with a trusted SQL Server connection.
      Hello all, I posted this on SQL newsgroup as well, not sure who may know the answer. I'm developing a asp.net program. Everything works great,...
    2. Trusted connection question
      I have a question on ASP.NET security Currently, our ASP apps use a custom COM object to determine user's application role, connect to the...
    3. ending a trusted connection
      Dear collegues! I have a web application that utilizes integrated securty. So far everything seems to work as intended. There are some...
    4. Not associated with a trusted SQL Server connection
      We are running SQL server 2000 on MS Windows Server 2000. We have web based database (ASP.net and SQL Server 2000). When I run this page with 'sa'...
    5. Trusted connection from FoxPro 5.0
      I am trying to create a trusted connection from a FoxPro 5.0 program to a SQL Server 6.5 via a VPN. I need to run an automated process, and of...
  3. #2

    Default Re: Trusted sql connection failure

    Is the SQL Server located on a different machine to the IIS webserver? If
    so, you probably need to run ASP.NET under a domain account (or find some
    other way of sending the credentials from IIS -> SQL Server). At the moment
    it appears that you are running ASP.NET under a local account (either
    Machine\ASPNET or NT AUTHORITY\Network Service) and local accounts can't be
    assigned permissions to remote resources.

    Cheers
    Ken

    "Arie" <Arie@discussions.microsoft.com> wrote in message
    news:DD45121B-BDBC-4F57-90D1-BA8D3EFA24A4@microsoft.com...
    > Hi all
    >
    > I have a asp.net application, developed in Beta 2. It is working fine when
    > the project is stored in a web file system mode. I had to switch to work
    > in a
    > local IIS mode, and at this mode I'm failing to connect to the database
    > (MSSql). This is the message in the SqlException: Login failed for user
    > '(null)'. Reason: Not associated with a trusted SQL Server connection.
    >
    > Thnx
    > AZ

    Ken Schaefer 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