13-04-22 03:51 PM
request.PreAuthenticate = true;
request.Credentials = CredentialCache.DefaultNetworkCredentials;
25-04-22 09:11 PM
request.Credentials = new NetworkCredential("username", "password", "domain");
10-05-22 12:18 PM
17-05-22 01:50 PM
17-05-22 04:46 PM
19-05-22 10:28 AM
19-05-22 10:31 AM
19-05-22 04:47 PM
19-05-22 04:59 PM
request.UseDefaultCredentials
is the only property needed to authenticate a request coming out of a .NET environment, so Blue Prism should be capable of sending a well-formed request. Whether that request is being handled in IIS appropriately with regard to Windows Authentication configuration could be the area to investigate.