This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes Web Services and the fly likes Encrypting a SOAP message Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Web Services
Reply Bookmark "Encrypting a SOAP message" Watch "Encrypting a SOAP message" New topic
Author

Encrypting a SOAP message

Andrew Braithwaite
Greenhorn

Joined: Nov 16, 2005
Posts: 1
I have written the code below to send a soap message built from a file to a webservice. It does exactly what I want, but I need to encrypt the message using TLS. Can anybody give me any pointers on how to go about doing this?


Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35440
    
    9
You can send it over HTTPS instead of HTTP, which would use SSL or TLS.

If you want to specifically encode it, you would normally use WS-Security, for which an implementation is available at http://ws.apache.org/wss4j/. I'm not sure if it supports TLS, though.
[ November 16, 2005: Message edited by: Ulf Dittmer ]

Android appsImageJ pluginsJava web charts
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Encrypting a SOAP message
 
Similar Threads
Webservice Help!
Need to send Signed SOAP Message
SoapConnection timeout
Output as null
How to convert a StreamResult to a String?