I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2009-11-02 06:41:15-08 by doleman
XML-Encryption using SOAP::Lite
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>
Direct Responses: Write a response