I need to get information from a web service, so I accordingly added the Service Reference to the project.
SearchServiceClient search = new SearchServiceClient();
search.ClientCredentials.HttpDigest.ClientCredential.UserName = "";
search.ClientCredentials.HttpDigest.ClientCredential.Password = "";
results[][] = search.searchWithRights(field, field, field, field);
Console.WriteLine(results[0][0]);
Even after passing the username/password many different ways, I kept getting an exception.
"An error was discovered processing the
<wsse:Security>header
I have attempted this many different ways, and gave up and directly contacted the developers. they told me that I needed to send the password using a PasswordDigest. I can't seem to find this anywhere in their code though.
Also, I have successfully send this request using soapUI. I know what the actual XML needs to look like, but I was trying the service reference way first.