Questions tagged [integrated-security]

Use this tag for questions related to units, or entities, that use joint-services, to achieve its purpose.

Integrated security systems, units, or entities are assembled by joint services.

81 questions
0
votes
1 answer

Retrieve web user's Identity outside of request scope

I have an ASP.NET app that logs Audit reports using nHibernate's IPreUpdateListener. In order to set the current user in the Listener events, I was using System.Security.Principal.WindowsIdentity.GetCurrent(). This works fine when debugging on my…
Kendrick
  • 3,747
  • 1
  • 23
  • 41
0
votes
0 answers

Using Integrated security for DB connection in Google Docs Script?

I want to establish a connection to MS SQL in Google docs via Script by using integrated security = SSIP, basically connecting to the server with my integrated Windows authentication. However, Google tells me that the 'integrated security'…
S.E.
  • 1
0
votes
1 answer

Run Visual Studio debug session with credentials

Currently I'm working on an ASP.NET MVC 2 website. Company policy says that as many of the connections to backend systems should be done with integrated security. So finally when the website is hosted in IIS, the credentials of the AppPool are being…
0
votes
1 answer

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 app. I have unchecked Anonymous access and checked…
0
votes
1 answer

AD user impersonation does not propagate to database with integrated security

I have a setup where I impersonate an AD user as described here. The app connects to the (Oracle) database using integrated security, but the impersonated credentials are not propagated to the database. Are there any known issues with impersonating…
0
votes
1 answer

SonarQube running as a Windows Service on SQL Server with integrated authentication - Does anyone have a working example?

SonarQube is installed as a service. jtds-1.3.1-dist is used for SQL Server access. The service works using SQL Server authentication. I've tried many configurations - a few examples…
playtime222
  • 99
  • 1
  • 8
0
votes
2 answers

SQL Server 2012 - Distant connection issues with Integrated Security

I have two SQL Servers : one in Dijon, France; one in Arvada, Colorado, US. A data replication has been set up between them. Everything works fine when users try to connect to SQL Server 2008 R2 Dijon database. BUT an error occurs when one of my…
0
votes
0 answers

Why can't IIS log in to SQL using machine name

I've looked at dozens of stackoverflow articles, web articles and nothing offers a solution. My website requires Integrated Security. It uses a SqlFileStream and as I understand only works if integrated security is enabled. My entire website runs…
Adam Wood
  • 289
  • 2
  • 4
  • 13
0
votes
1 answer

ASP.NET allow access to all domain users without over-riding Environment.UserName

I have a vb.Net app which has been running fine locally using localhost and 'Integrated Security=True' in my connection string. The application itself uses Environment.UserName to allow access to the webpages and present different info depending on…
Arthur
  • 1
  • 1
  • 3
0
votes
1 answer

Integrated security=false vs omitted

I'm using ADO to connect to a SQL Server 2005 database. I'm using an OLE DB connection. Connection string looks like: PROVIDER=sqloledb;DATA SOURCE=lokdb;USER ID=secret;PASSWORD=secret;APP=LokEng_Tests;WSID=LOKSPEC1;NETWORK…
CBRF23
  • 1,340
  • 1
  • 16
  • 44
0
votes
1 answer

Visual Studio / Visual Source Safe / Integrated Security / IIS 7

Using Visual Source Safe with IIS integration (the working dir is the IIS site) Visual Studio, pointed to the IIS site would load up the Web project. It would be under VSS control (have to check out files, etc). Recently, we had to switch to…
0
votes
1 answer

How do I connect to an Oracle database using integrated pipeline mode with an ASP.Net application through IIS 7.5?

I have read that it is recommended to remove the username/password for database connection strings from the web.config file for an ASP.Net web application, and instead use an IIS application pool identity for authenticating access to the…
Bryan
  • 3,629
  • 2
  • 28
  • 27
0
votes
1 answer

Integrated Security with Impersonate=true / Connection String issue / ASP.NET

We have a website deployed with Impersonate=true. A connection string is defined as this: Integrated Security=SSPI;Persist Security Info=false;Initial Catalog=MyDatabase;Data Source=MyServer; I assume Persist Security Info is redundant as that…
0
votes
2 answers

Can I provide a link that triggers windows authentication?

Is it possible to have a link that attempts windows integrated security authentication on one of my pages in an project where the web.config is set to Forms?
Maslow
  • 18,464
  • 20
  • 106
  • 193
0
votes
1 answer

How to connect MS SSMS Express to server (Integrated Security)

I'm trying to connect via SSMS to our MS SQL Server 2005. I first tried to connect via visual studio programmatically. It worked after I found out that I have to put "Integrated Security=SSPI;" into the connection string, otherwise it refused the…
Mario
  • 978
  • 2
  • 11
  • 31