2005/9/21, Tino Wildenhain <[EMAIL PROTECTED]>:
Starsscream Desepticon schrieb:
> Hello
>
> How do you encrypt XmlRpc messages? I've had a look at
> Xml Security, but it is for encrypting/signing Xml
> messages (documents). When using XmlRpc I don't touch
> Xml directly. So is there a way of making my XmlRpc
> methods save?

XMLRPC works over HTTP, so you usually just encrypt the
transport channel, meaning you use https (ssl).

HTH
Tino

I think i did so, using the Security Tool provided with xmlrpc and some black magic java keystore
//code in main :
SecurityTool.setKeyStore("keystoreFile");
SecurityTool.setTrustStore("keystoreFile");
SecurityTool.setKeyStorePassword("keystorePassword");
SecurityTool.setTrustStorePassword("keystorePassword");
           
server = new SecureWebServer(port);
server.addHandler("$default", handler);
server.start();
//code end

correct me if i m wrong, please.

Nicolas Hoibian


Reply via email to