Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
It feels to me (as a non-C# dev) that there is a bit of a mixup between WSSE authentication and HTTP authentication. Just a hint, don't know for sure. – owlstead Feb 20 at 20:16
check this site and see if this article help blogs.msdn.com/b/aszego/archive/2010/06/24/… || blogs.msdn.com/b/ukadc/archive/2010/08/03/… – DJ KRAZE Feb 20 at 20:18

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.