Hi
I am trying to write a client app that consumes the SWIS web service. I am trying to login to the web service but when I execute the QueryXML method it throws an Exception:
"Could not establish trust relationship for the SSL/TLS secure channel with authority 'solarwinds:17778'".
I am guessing the web service is not able to authenticate the user credentials I am providing.
I am setting the follwoing properties with no joy.
client.ClientCredentials.UserName.UserName = @mydomain\username;
client.ClientCredentials.Windows.AllowNtlm = true;
client.ClientCredentials.Windows.AllowedImpersonationLevel = System.Security.Principal.TokenImpersonationLevel.Impersonation;
I was wondering if our administrators need to set my account up in Solarwinds differently or there is a configuration step being missed.
I have access to the Solarwinds dashboard via the browser without logging in but my nt account credentials are not working for the webservice.
Thanks
Paul