Forum Discussion

u28374's avatar
u28374
New Contributor
6 years ago

Authenticating to SOAP UI with delegation allowed

My Web services are:

  1. SOAP based
  2. Have both a NET.TCP and HTTP endpoint exposed
  3. Use windows / Kerberos authentication
  4. 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;