Good day all, At this moment I'm working on a webservice-client that has to use WS-Security, but i can't seem to figure out how configure CXF that it fills the SOAP-header in the correct way. We don't use Spring for the configuration, so everything has to be configured via the API.
We need to have a timestamp, a signature and also a binary security token. The Canonicalization-algorithm is xml-exc-c14 The signature-algorithm is RSA-SHA256 can someone point me in the right direction for this? I've already created a WSS4JInInterceptor and a WSS4JOutInterceptor. Both with a properties-map containing an Action = Timestap Signature, signatureAlgorithm = "http://www.w3.org/2001/04/xmldsig-more#rsa-sha256" and signatureDigestAlgorithm = "http://www.w3.org/2001/04/xmlenc#sha256" do I need to configure anymore other than adding a certificate to the keystore? thanks in advance. kind regards, Ted
