|
Hello, anonye got an idea how the soap:body element can be encrypted? I want to implement a WS-Securtiy server which first signs the message, then puts a timestamp in, then encrypts the body.
The first two things work, only encryption is missing.
How can i change this request:
<soap:body>
<PurchaseOrder>
<Number>...</Number>
<Date>...</Date>
<Details>...</Details>
</PurchaseOrder>
</soap:body>
in something like:
<EncryptedData xmlns='http://www.w3.org/2001/04/xmlenc#' MimeType='text/xml'>
<CipherData>
<CipherValue>MC0C...</CipherValue>
</CipherData>
</EncryptedData>
|