Is it possible for a web server to make a HTTPS request to itself?
问题 Imagine you have two applications, A & B, running on the same web server. You want app A to call a webService on app B over SSL. Is it possible to do that with an address like https://localhost/appsB/webService1 ? How can the SSL handshake be done without a client (like a browser?) It actually works when using this address http://localhost/appsB/webService1 , only not in SSL mode. However it works as well with HTTPS between the server and a browser when calling https://localhost/appsB