• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

How to retrieve SOAP message?

 
Ranch Hand
Posts: 36
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,

I am using JWSDP1.1 and I am trying to sign a SOAP message using

Apache XML Security (xmlsec.jar). I know how to sign and validate

xml files, but the problem is that I don't find a way to retrieve the

SOAP message before transmitting. Does anybody have succeeded XML

signature using JWSDP and ApacheXML Security? If so, could you please

let me know how you extracted the SOAP message?
 
author
Posts: 11962
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The javax.xml.soap.SOAPBody interface extends org.w3c.dom.Element and org.w3c.dom.Node interfaces, which should let you apply the digital signature and encryption operations as usual. That is, assuming that you use SAAJ to create/send your SOAP messages.
 
Not so fast naughty spawn! I want you to know about
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic