How to add wsse: security header

I am trying to call a web service in a .net client. The web service requires the wsse: Security header. I added a link to the service, how do I add a header to add? I do this in C # ,. net 3.5

+4
source share
1 answer

This is the ws-security header. Since you have .net 3.5, you can use WCF so that you can do this in your endpoint configuration.

But what part of ws-security did you want to do? WS-Security on Wikipedia

So I need more information before I can give a better answer.

0
source

All Articles