integrated-security

Application pool identity or Impersonation

…衆ロ難τιáo~ 提交于 2019-12-29 20:31:30
问题 (A question of similar vein has been asked before but both the question and the accepted answer do not provide the detail I am looking for) With the intention of running an asmx web service under a dedicated domain account what are the usage scenarios and/or pros and cons of using an Application Pool with the identity of the domain account versus Impersonation? We have 3 small internal web services that run under relatively low load and we would like to switch them to running under their own

Windows Integrated Authentication Conflict With MS-SQL 2000 DB Connection With Integrated Security

我怕爱的太早我们不能终老 提交于 2019-12-22 00:55:12
问题 We are developing an intranet web application on .NET 2.0 platform. The application is using Integrated Windows Authentication for Single Sign On. The users are authorized to use diffent modules according to the Active Directory Groups they are in. Up to the point where authentication and authorization is accomplished everything works fine. But the problem starts when application tries to connect to the database on MSSQL Server. According to the security policies of our customer, no database

SQL Server Authentication or Integrated Security?

南笙酒味 提交于 2019-12-13 15:26:22
问题 We have some corporate intranet users using a WinForms app to work on a system with SQL server behind. Integrated Security is setup, allowing all users update and delete permissions, where application security limits how and where table updates take place. However, some users are power users with SQL query tools at their disposal, and access the DB directly for building reports. However, with integrated security, they have default update rights on tables where they should not have, as the

How can I get Vault to use Windows Authentication from NAnt?

牧云@^-^@ 提交于 2019-12-11 03:02:28
问题 I am wanting to perform a number of tasks in SourceGear Vault (V4.1.4) with NAnt (V0.86.3317.0). Is there any way we can get Vault to use Windows Authentication from NAnt to create the connection? The NAnt block I am using to initialise the vault connect is: <target name="InitialiseVaultSettings"> <echo>InitialiseVaultSettings</echo> <vaultsetloginoptions user="${vault.Username}" password="${vault.Password}" URL="${vault.Host}" repository="${vault.Repository}" /> <vaultsetworkingfolder

ODP.NET Integrated Security Invalid Connection String Argument

若如初见. 提交于 2019-12-10 17:57:34
问题 What am I missing? <add name="test" connectionString="Data Source=TEST_ORACLE;Integrated Security=Yes;" /> [ArgumentException: 'Integrated Security' is an invalid connection string attribute] Oracle.DataAccess.Client.OracleConnection.ParseConnectionString() +2707 Oracle.DataAccess.Client.OracleConnection.set_ConnectionString(String value) +533 Oracle.DataAccess.Client.OracleConnection..ctor(String connectionString) +210 ODP.NET: Oracle.DataAccess - 2.102.2.20 (I am using a bindingRedirect to

ASP.NET > SqlServer; trust and delegation

会有一股神秘感。 提交于 2019-12-07 20:42:55
问题 we have a system where they client wants integrated Windows authentication. This is an ASP.NET 3.5 application, connecting to Sql Server 2005. The web server is Server 2003 R2 SP2. The db server is Server 2003 SP2 (not R2). In the db server, I ran the following script exec sp_grantlogin 'myDomain\myUserGroup' USE myDbName exec sp_grantdbaccess 'myDomain\myUserGroup' I have 3 users in the Windows user group 'myDomain\myUserGroup' right now. All three users' accounts are marked as trusted for

ASP.NET > SqlServer; trust and delegation

﹥>﹥吖頭↗ 提交于 2019-12-06 13:34:21
we have a system where they client wants integrated Windows authentication. This is an ASP.NET 3.5 application, connecting to Sql Server 2005. The web server is Server 2003 R2 SP2. The db server is Server 2003 SP2 (not R2). In the db server, I ran the following script exec sp_grantlogin 'myDomain\myUserGroup' USE myDbName exec sp_grantdbaccess 'myDomain\myUserGroup' I have 3 users in the Windows user group 'myDomain\myUserGroup' right now. All three users' accounts are marked as trusted for delegation. The web server account in ADs is marked trusted for delegation. The web application is

Configuring Integrated Security using IIS Application Pool Identity accounts for SQL Server 2008

China☆狼群 提交于 2019-12-05 01:18:35
问题 I have the following configuration for a web site: Two Web front-ends (e.g. machine names: WFE1 & WFE2) 1 SQ One SQL Server Database cluster (e.g. machine name: DBCluster) All machines are in the same domain (e.g. MyDomain) running Windows 2008 R2 Enterprise and SQL Server 2008 R2. I am in the process of deploying a web application that uses the Application Pool Identity. I have named the pool MyWebApp, which translates to the name, [IIS APPPOOL\MyWebApp]. When I try adding this user to SQL

Windows Integrated Authentication Conflict With MS-SQL 2000 DB Connection With Integrated Security

青春壹個敷衍的年華 提交于 2019-12-04 21:14:08
We are developing an intranet web application on .NET 2.0 platform. The application is using Integrated Windows Authentication for Single Sign On. The users are authorized to use diffent modules according to the Active Directory Groups they are in. Up to the point where authentication and authorization is accomplished everything works fine. But the problem starts when application tries to connect to the database on MSSQL Server. According to the security policies of our customer, no database user or password data should be kept in connection strings or in registry even if encrypted. So we are

Integrated Windows Authentication & SSL

不想你离开。 提交于 2019-12-03 14:08:31
问题 I have an administrative website on our intranet that currently uses Integrated Windows Authentication through IIS. We would like to move this application to a public website and secure it with SSL so our users can access it from anywhere. I had been planning on using an HttpModule to redirect from http to https, but it doesn't look like this works with integrated authentication (the login popup appears before the redirect). Am I stuck using the "require SSL" checkbox in IIS? This doesn't