Hi Poul,
>> How can i tell if the connection is truly thru TLS or not?
p_web.RequestData.WebServer.SSL is set to either true or false.
>> Does the server setting take precedence over the http(s) protocol in the request?
no, but there may be a "middle step" which is fooling you - it all depends on how your server is setup.
One typical way to set up the server is to have "2 server objects" in WebServer procedure.
The one listens on port 80, and is set to "Always redirect to Secure Site".
So then the user comes in on http, but gets a redirect back, then asks again on https, and hence gets the answer.
cheers
Bruce