Using Axis and WS-FX, I have created a response in a SOAPEnvelope, and then I use WS-FX to sign it:
SOAPEnvelope response = ......;
Document respDoc = (WSSignEnvelope)signer.build(response.getAsDocument(), crypto);
What is the correct way to copy the respDoc (signed document) back into the SOAPEnvelope? I seem to be having trouble getting this right, without polluting the document and ruining the signature.
Help would be appreciated!
Thank you,
Bryan
