How can I determine on the server-side when an incoming request is HTTPS? -


Is there an HTTP environment variable that I can use to use it?

What are you using on the server side? If you are using Java Servlet, You can follow the information:

  string scheme = request .getScheme (); String servername = request.getServerName (); Int portNumber = request.getServerPort ();  

Comments

Popular posts from this blog

c# - sqlDecimal to decimal clr stored procedure Unable to cast object of type 'System.Data.SqlTypes.SqlDecimal' to type 'System.IConvertible' -

Calling GetGUIThreadInfo from Outlook VBA -

Obfuscating Python code? -