// alg.setType(AlgorithmSuiteValue.Basic128);
alg = new AlgorithmSuite(AlgorithmSuiteValue.Basic128.getDigAlgorithm(), AlgorithmSuiteValue.Basic128.getEncAlgorithm(), AlgorithmSuiteValue.Basic128.getSymKWAlgorithm(), AlgorithmSuiteValue.Basic128.getAsymKWAlgorithm());
SignaturePolicy signaturePolicy = new SignaturePolicy();
SignatureTarget st = new SignatureTarget();
st.setType("qname");
st.isSOAPHeadersOnly(true);
st.setValue("{http://stockhome.com/quote}");
st.setDigestAlgorithm(DigestMethod.SHA1);
((SignaturePolicy.FeatureBinding)signaturePolicy.getFeatureBinding()).
addTargetBinding(st);
((SignaturePolicy.FeatureBinding)signaturePolicy.getFeatureBinding()).
setCanonicalizationAlgorithm(MessageConstants.TRANSFORM_C14N_EXCL_OMIT_COMMENTS);
QName name = new QName("X509Certificate");
Token tok = new Token(name);
SymmetricKeyBinding sigKb =
(SymmetricKeyBinding)signaturePolicy.newSymmetricKeyBinding();
AuthenticationTokenPolicy.X509CertificateBinding x509bind =
(AuthenticationTokenPolicy.X509CertificateBinding)sigKb.newX509CertificateKeyBinding();
x509bind.setReferenceType(MessageConstants.DIRECT_REFERENCE_TYPE);
//x509bind.setPolicyToken(tok);
x509bind.setUUID(new String("1019"));
// create SOAPMessage
SOAPMessage msg = MessageFactory.newInstance().createMessage();
SOAPHeader header = msg.getSOAPHeader();
SOAPHeaderElement she1 = header.addHeaderElement(SOAPFactory.newInstance().createName("StockHeader","stkheader","http://stockhome.com/quote"));
she1.addTextNode("Head Text Node1");
SOAPHeaderElement she2 = header.addHeaderElement(SOAPFactory.newInstance().createName("Quote","quote","http://stockhome.com/quote"));
she2.addTextNode("Head Text Node2");
SOAPBody body = msg.getSOAPBody();
SOAPBodyElement sbe = body.addBodyElement(
SOAPFactory.newInstance().createName(
"StockSymbol",
"tru",
"http://stockhome.com/quote"));
sbe.addTextNode("QQQ");
//Create processing context and set the soap message to be processed.
ProcessingContextImpl context = new ProcessingContextImpl(client);
context.setSOAPMessage(msg);
com.sun.xml.ws.security.policy.WSSAssertion wssAssertionws = null;
WSSAssertion wssAssertion = null;
AssertionSet as = null;
Policy wssPolicy = new PolicyResourceLoader().loadPolicy("security/policy-binding2.xml");
Iterator<AssertionSet> i = wssPolicy.iterator();
if(i.hasNext())
as = i.next();
for(PolicyAssertion assertion:as){
if(assertion instanceof com.sun.xml.ws.security.policy.WSSAssertion){
wssAssertionws = (com.sun.xml.ws.security.policy.WSSAssertion)assertion;
}
}
wssAssertion = new WSSAssertion(wssAssertionws.getRequiredProperties(), "1.0");
MessagePolicy pol = new MessagePolicy();
pol.append(signaturePolicy);
pol.setWSSAssertion(wssAssertion);
context.setAlgorithmSuite(alg);
context.setSecurityPolicy(pol);
CallbackHandler handler = new PolicyCallbackHandler1("client");
SecurityEnvironment env = new DefaultSecurityEnvironmentImpl(handler);
context.setSecurityEnvironment(env);
SecurityAnnotator.secureMessage(context);
SOAPMessage secMsg = context.getSOAPMessage();
//DumpFilter.process(context);
// now persist the message and read-back
FileOutputStream sentFile = new FileOutputStream("golden.msg");
secMsg.saveChanges();
TestUtil.saveMimeHeaders(secMsg, "golden.mh");
secMsg.writeTo(sentFile);
sentFile.close();
// now create the message
SOAPMessage recMsg = TestUtil.constructMessage("golden.mh", "golden.msg");
// verify
verify(recMsg, null, null);