About encryption: have you tried stunnel for that (http://www.stunnel.org)? I'd be curious to see how it performs against Tomcat's SSL.
Ciao,
-- Gianugo
Kurt Ward wrote:
To make things work under SSL, create a cert for Tomcat and install it
using
port 8443 and 1. Uncomment the url starting with "https" in XindiceAdmin.java
1a. Rebuild with ant!
2. Restart the admin tool
On a side note for encryption, I have also used an SSH tunnel set up for Xindice. The performance is quite a bit slower than SSL, but it's a quick workaround that works without the need for SSL on both 1.0 and 1.1b:
SSH -f -N -L 7000:127.0.0.1:8080 192.168.100.1
Changing the url to http://127.0.0.1:7000/xindice1.1b will then route everything through SSH.
More of a speed experiment than anything else.
Kurt