Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
5answers
897 views

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 ...
3
votes
2answers
2k views

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 ...
2
votes
1answer
811 views

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 ...
2
votes
2answers
2k views

What is a Trusted Connection?

What is a trusted connection in terms of SQL Server 2005 (Trusted vs Windows Auth)?
2
votes
1answer
791 views

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 ...
1
vote
0answers
152 views

DB2 trusted connection via Tomcat datasource? [closed]

I'm currently dealing with a really tiring issue. I must implement a DB2 trusted pooled connection in my Java servlet, so the connection gets established once and the user is only switched on demand. ...
1
vote
2answers
2k views

Windows Authentication Trusted Connection Problem?

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 ...
0
votes
0answers
222 views

ODBC Connection for Linked tables/queries in MS Access 2007 ignores Trusted Connection parameter

Example connection string ODBC;DRIVER=SQL Server;SERVER=(local);APP=Schedule;DATABASE=MYDB;UID=USER;PWD=PASSWORD;Trusted_Connection=No;Persist Security Info=True I've also tried this with a semi ...
0
votes
1answer
75 views

Kerberos - difference btween JAAS connection to server and SQL Server Trusted Connection

My understanding is that both JAAS and SQL Server can be configured to use kerberos in a domain environment, with an active directory server. My understanding that JAAS gets the user credentials ...
0
votes
1answer
85 views

How to run Distributed SQL Server Query with trusted connection

I want to run SQL Server query on the remote machine and this is what I am doing EXEC sp_addlinkedserver N'remote-server', N'SQL Server'; //I don't want to do this step, and want to use ...
0
votes
1answer
465 views

WCF hosted in IIS, Problem connecting to database with integrated security

I have a WCF service hosted in IIS 5.1 on my development XP machine. The service cannot connect to sql server DB with integrated security=true. The same service works fine when hosted in a console ...
0
votes
2answers
388 views

Integrated windows authentication to SQL Server

I have an application that uses a database on SQL Server and I want users to connect to that server using integrated windows authentication. The connection string is: SqlConnection scn = new ...
0
votes
1answer
2k views

Spring Security integration into active directory

I want to authenticate my web service in Spring with an Active Directory lookup at both the producer and the consumer - under the Principal that that each are executing under (ie Service Accounts). ...
0
votes
3answers
2k views

How does the SQL Server JDBC Trusted Connection Authentication work?

How does the SQL Server JDBC Trusted Connection Authentication work? (ie how does the trusted connection authenticate the logged in AD user in such a transparent and elegant fashion and how can I ...