0
votes
0answers
94 views

Kerberos Oracle ADFS delegation S4U2Proxy ticket

We have a web site in .net 4.0 in IIS 7.5 at Windows Server 2008 R2 64, that are using Oracle Kerberos Authentication (SSO). The site uses WCF services as middle tier towards DB. All the users are ...
1
vote
0answers
123 views

WinRM - Second Hop without CredSSP

I would like to ask if it is possible to impersonate at "second hop" at WinRM service using only Kerberos (delegation)? CredSSP is no solution for me because I cannot prompt user password .. I'm ...
2
votes
1answer
656 views

Kerberos Delegation Failed for Users from a trusted domain

I have successfully setup the Kerberos Delegation between a ASP.Net web site and a SQL Server. All the users in the same domain of the IIS application pool account and SQL Server service account can ...
3
votes
0answers
242 views

Using kerberos delegation in WCF across domains and passing ClientCredentials

I've got a client app in one domain (Domain1) that needs to access a WCF service on an app server in another domain (Domain2) (with no trust). Users have to enter their Domain2 credentials into the ...
1
vote
1answer
598 views

Why does kerberos delegation only work in Internet Explorer?

I've currently setup kerberos delegation on an IIS web server. Users connect to a website on the webserver and can call for a SSRS report to be generated within the web application. The web ...
0
votes
1answer
224 views

Kerberos delegation across 2 untrusted domains using WCF

I have an application in domain A and would like it to use domain B credentials to access domain B content. These domains have no trust. Is it possible to challenge a user in domain A, and get them ...
1
vote
1answer
910 views

Impersonate with Delegation or More than one hop on Kerberos? Completely lost

My issue here is how to deal with security and a proper implementation of impersonation which will work from a client machine and authenticate properly to my IIS server which passes the still valid ...
0
votes
0answers
327 views

credential delegation to WCF Service with known password

I have an ASP Web Service that needs to talk to a windows service hosted WCF endpoint that then is talking to Microsoft Exchange via the Exchange Web Services Managed API v1.1 I have this code which ...
1
vote
1answer
453 views

IIS delegation to access network resources with Kerberos

I have a ASP.NET application that need to access to ANOTHER application, the ANOTHER application expecting Kerberos authentication, it based on the user credential to response to the request. My ...
5
votes
2answers
320 views

Any good Resources for WCF Delegation?

I'm trying to setup WCF Delegation, without success (the scenario is Client > Frontend Server > Backend Server). In theory, this should be straight forward using Kerberos (I do have a Windows ...
0
votes
1answer
372 views

SPNEGO and Delegation in Java

I use SPNEGO to authenticate my webapp. I would like to use ticket delegation to authenticate to LDAP on server side. But there is no ticket cache on server side since login (kinit) is done on client ...
0
votes
1answer
211 views

Implementing kerberos delegation in a service with ODBC drivers

I'm trying to extend a windows service I've written to accept a kerberos ticket from a client and then delegate that ticket to an ODBC driver so it can connect to another server with it. The ODBC ...
1
vote
1answer
382 views

Setup kerberos delegation automatically

I have a web app that uses some backend servers (UNC, HTTP and SQL). To get this working I need to configure ServicePrincipalNames for the account running the IIS AppPool and then allow kerberos ...
4
votes
3answers
4k views

How do I configure IIS so that the user's domain credentials are used when connecting to SQL server?

We've recently released the latest version of our intranet application, which now uses windows authentication as standard, and needs to be able to connect to a configured SQL server with the ...
0
votes
1answer
326 views

how to ensure that our site authenticates with kerberos

I am working with HttpWebRequest in dotnet. I am using delegation (impersonation) to do this, request.Credentials = CredentialCache.DefaultCredentials; request.ImpersonationLevel = ...
10
votes
1answer
5k views

ASP.Net web application trying to use Impersonation and Delegation to connect to SQL Server

I'm trying to use Impersonation and Delegation in an intranet ASP.Net web-app in order to pass authenticated users' credentials onto a SQL Server. The web server and SQL server are two separate ...
5
votes
2answers
4k views

Kerberos, delegation and how to do this correctly?

I've got two separate homemade applications that need to communicate among themselves. One is a frontend application (asp.net actually), the other is a backend interface to an accounting application. ...
2
votes
1answer
1k views

ASP.net kerberos dropping down to NTLM sporadically

Background (just the relevant pieces): We have a large intranet asp.net 2.0/3.5 app. Web servers are Windows Server 2003 on an AD domain. Clients are on Windows, IE 6-8. Windows Authentication, with a ...
4
votes
1answer
1k views

How can i start a console application using the 'network service' account

I have a console application that i would like to run as 'NT AUTHORITY\NetworkService', but i cant remember how to do so - the only reason is that i will be hosting my service in a windows service, ...
2
votes
2answers
855 views

Why does my web part throw an error about “NT Authority/Anonymous User”?

My Sharepoint 2007 web part executes code to start a K2 workflow process. The workflow server resides on another server. When my code executes, I get the following error: "24408 K2:NT ...
1
vote
2answers
1k views

Kerberos Delegation for Clients Ouside the Firewall

I am trying to run a SQL Server Reporting Services where the data for the report is on a SQL Server database that's on a different server. Integrated Authentication is turned on for both the Report ...