Question

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.

Was it helpful?

Solution

WSE is obsolete. Do not use it unless you have no other choices at all.

You would do better to get VS2010 Express or VS2008 Express and develop with those, rather than use obsolete code which is the next best thing to unsupported. For instance, WSE has no support inside of VS2008 or VS2010, and never will.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top