I actually don't see this question already asked, perhaps because it is so basic.
I'm working with Java Apache httpcomponent, and inspecting the return of:
HttpResponse response.getStatusLine()
returns:HTTP/1.1 200 OK
I made the Apache HttpPost = new HttpPost("https://login.blah.com/etc");
Does this mean that I successfully am using Https with this connection (ie, my connection has successfully used HTTPS and not regular HTTP) ?
Thanks