SQL Connectivity problem

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

  1. #1

    Default SQL Connectivity problem

    We have a web page that connects to SQL server running under Windows Server 2003 and have a connectivity problem
    Connection is made using NT authentication and the normal thick client application has no problem. However, the web page will not connect unless the user is given local administrator privileges (on the machine where IIS and SQL Server are running)
    SQL Server and IIS are running on the same machine. Anonymous access is turned off and NT authentication is enebaled and windows impersonation is being used

    Any ideas anyone?
    Steve Guest

  2. Similar Questions and Discussions

    1. Flash 8 port connectivity problem
      Hi, I have a client that no longer can connect to your port connectivity test (http://www.adobe.com/go/tn_16466 ) since they upgrade from flash...
    2. Webservices connectivity problem
      Im working on a flash app strongly based on SOAP. Works fine both local and remote, but in certain companies where we tried to show it the...
    3. connectivity problem
      I am using SCO OPENSERVER 5.0.0 with 35 users.I am now facing a problem, the number of telnet connections are 25 maximum. If the 26 connection is...
    4. Remote SQL Connectivity Problem with ASP.Net Web Application
      Hello, I am connecting to a remote sql server using asp.net web application, the error that i get is "Sql Server does not exist or access denied"....
    5. problem with asp connectivity
      I am trying to connect to my oracle data base with my asp page, but it keeps giving an error message "Microsoft OLE DB Provider for ODBC Drivers...
  3. #2

    Default Re: SQL Connectivity problem

    What is the error message you are seeing?

    What is the connection string you are using? In the connection string, how
    are you referring to the SQL Server? If are you using IWA, then an SPN for
    the Netbios name of the SQL Server is created in AD when SQL Server is
    installed. If you are using an IP Address, or FQDN, you will need to use the
    SetSpn.exe tool to create an appropriate Service Principal Name.

    But, before we jump the gun, let's have a look at the settings you are
    using.

    Cheers
    Ken

    "Steve" <anonymous@discussions.microsoft.com> wrote in message
    news:4A32D680-2AF4-477F-9889-2706A073D64E@microsoft.com...
    : We have a web page that connects to SQL server running under Windows
    Server 2003 and have a connectivity problem.
    : Connection is made using NT authentication and the normal thick client
    application has no problem. However, the web page will not connect unless
    the user is given local administrator privileges (on the machine where IIS
    and SQL Server are running).
    : SQL Server and IIS are running on the same machine. Anonymous access is
    turned off and NT authentication is enebaled and windows impersonation is
    being used.
    :
    : Any ideas anyone?


    Ken Schaefer Guest

  4. #3

    Default Re: SQL Connectivity problem

    The actual error code we are getting is 20055 but that is as much as I can tell you at present
    I forgot to mention that I'm actually using ODBC to connect to the database through a COM object. The COM object is an exe server at that : don't ask why its all legacy and currently being updated to ADO.NET but I have to support the current for a while
    So I don't actually know what the connection string being used or (at present) how I might find out what the connection string might be

    Thank
    Steve
    Steve 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