posted 21 years ago
Yes, it uses SSL, but this is usually implemented as HTTP over SSL, also known as HTTPS. What this means is that you still talk basic HTTP, and the transport layer takes care of managing the SSL part.
As to the implementation specifics, there are a few options and it is also vendor specific. You can have the App server provide the HTTPS implementation, or you can have the Web Server provide SSL and talk basic HTTP with the app serever, or you can implement it twice, SSL from the Web Server and SSL between the Web and App Servers.
You'll need to check the documentation for your server though.
Dave