Re: SSL enabled web service?
Posted By:
Anonymous
Posted On:
Thursday, January 17, 2002 07:58 AM
You may install Apache SOAP under Tomcat with HTTPS (SSL).
then the service endpoint URL will be instead of:
http://WS-server:8080/(...etc...)/rpcrouter
something like
https://WS-server:(port)/...etc.../rpcrouter
where port is the port where HTTPS is serving the requests (I don't remember it now, check documentation - also for enabling HTTPS in Tomcat).
If the client supports https as protocol then everything should work.
Note: the services themselves don't know anything about https, the protocol is identified by the URL.