I'm working on a .NET client to connect to an AXIS web service and as a part of this I'm trying to implement all the required security headers. My development environment is VS2005 and I'm using C#.
I've first downloaded soapUI and generated all the required security headers and started sending out messages, which works. So I know what I need to do (Sign the message, put it in wsse:Security
header, encrypt the body and send it out)
So thinking it'd be simple enough, I've downloaded WSE3.0 from Microsoft and included it in my project. Now it's generating something but not with the security headers that I want. Specifically, I need to remove the webservice addressing headers (wsa:From, wsa:ReplyTo, wsa:Action), and the timestamp (wsu:Timestamp) but I'm unable to find any specific config settings in the wse3policycache.config file to remove them.