Questions tagged [trustedconnection]

32 questions
78
votes
2 answers

What is a Trusted Connection?

What is a trusted connection in terms of SQL Server 2005 (Trusted vs Windows Auth)?
Csharp
  • 2,916
  • 16
  • 50
  • 77
23
votes
3 answers

How to use wget with ssl certificate

I am using wget in my program to get some file using HTTP protocol. Here i need to set security so we moved HTTP protocol to HTTPS. After changing to HTTPS how to perform wget. I mean how to make trusted connection between two machines then perform…
Siva Gnanam
  • 938
  • 2
  • 10
  • 26
13
votes
2 answers

Your Connection is not private just in my websites (privacy Error) - Page Gets Stuck in Security Page

Chrome gets stuck in security error page: Does not display the advanced tab(/button/paragraph) to proceed.
Sara N
  • 1,079
  • 5
  • 17
  • 45
11
votes
5 answers

Can I impersonate a client authenticated with forms auth and establish a trusted connection to SQL Server?

Here is what I've been trying to do Build an ASP.NET MVC 3 application with forms authentication and active directory membership. The web server and database are different physical servers hence a double hop. I thought the answer was this older…
7
votes
0 answers

Change Azure App Service app pool identity

I am hosting an MVC web application in Azure App Service with Azure AD synching with our on prem AD. I need the app pool to run under a specific account so I can access our on prem SQL Server (via trusted connection). Can anyone point me in the…
Trenton
  • 265
  • 1
  • 3
  • 16
5
votes
2 answers

connection string for remote database server

I have 2 servers setup at the moment. One is a web server running Win Server 08 and the other is a database server running SQL Server 08 on Win Server 08. Currently I have my site setup so that it can read/write to the database by using a connection…
Richard Reddy
  • 2,120
  • 3
  • 25
  • 39
3
votes
3 answers

Windows authentication trusted connection not working

MSSQL Server is in the "abc" domain and have mixed mode authentication. I am connecting from the machine which is not in domain or in a domain "xyz" but with in the same network using MSSQL Jdbc driver 2.0. I have logged in as admin or account in…
3
votes
1 answer

Azure App Services trusted connection to SQL Azure

I have a web application hosted in Azure App Services (allowing anonymous access) that I need to connect to a SQL Azure DB through a TRUSTED CONNECTION. My business will not allow me to store a password in the web.config (hence the "trusted…
2
votes
1 answer

WCF Impersonation and SQL trusted connections?

We have a service that is hosted under IIS7. The connection string for the SQL server is set to Trusted. In order for the authentication to happen I need to setup impersonation on the service and have the client initiate an impersonated connection.…
DDiVita
  • 4,225
  • 5
  • 63
  • 117
2
votes
0 answers

Laravel: How to connect to sql server using Microsoft Credentials

On Laravel 5, How to connect using windows authentication? (Trusted Connection)
Led
  • 662
  • 1
  • 19
  • 41
2
votes
1 answer

How to Detect Trusted Connection in Crystal Reports using VB.NET?

I have some Crystal Reports connecting to a Sql Server db that I would like to detect whether the connection is trusted or whether I need to supply the log on info (reports are not supplied by me so I can't control the connect method). If I just…
Michael
  • 41
  • 1
  • 4
2
votes
2 answers

Can I use the Integrated Security option in a connection string if I'm connecting to a remote machine that's not on a domain?

Can I use the Integrated Security (a.k.a. Trusted Connection) option in a connection string if I'm connecting to a remote machine that's not on a domain? I have a development server with Windows Server 2012 with WebSocket support, but I want to…
Triynko
  • 18,766
  • 21
  • 107
  • 173
1
vote
0 answers

How to remove Windows authentication from SQL Server Express database

I need a way to lock a SQL Server Express database that is deployed to a PC, which may or may not be on a domain. I would like to ensure that the end user cannot access the database aside from a highly restricted access via stored procedures, even…
1
vote
0 answers

oracle vba trusted connection issue windows 10 64 bit Ms Excel 64bit

Dim con As Object Dim rs As Object Dim cmd As Object Dim query As String Set con = CreateObject("ADODB.Connection") Set rs = CreateObject("ADODB.Recordset") Set cmd = CreateObject("ADODB.Command") col = 2 strcon…
Shekhar Nalawade
  • 127
  • 1
  • 1
  • 15
1
vote
0 answers

how we validate signature from a trusted server

I am developing a windows phone 8 I am connecting an HTTPS Server with a trusted certificate. I am trying to read the server digital signature to validate it with local string in order to avoid man in the middle attack. so what should I send to…
1
2 3