u28374
6 years agoNew Contributor
Authenticating to SOAP UI with delegation allowed
My Web services are:
- SOAP based
- Have both a NET.TCP and HTTP endpoint exposed
- Use windows / Kerberos authentication
- Require delegation
Below is a sample that works in .NET of setting up the connection.
ServiceReference1.SCCMServicesClient request = new ServiceReference1.SCCMServicesClient(); request.ClientCredentials.Windows.AllowedImpersonationLevel = System.Security.Principal.TokenImpersonationLevel.Delegation;
In SOAPUI I get an access denied issue on the doublehop. I guess it has something to do with this line (in .NET) - can I set something similiar in SOAPUI?
request.ClientCredentials.Windows.AllowedImpersonationLevel = System.Security.Principal.TokenImpersonationLevel.Delegation;