12-23-2020, 05:15 AM
Not 100% sure what you are attempting.
So I'll go with some assumptions.
You are using SA ( stand alone ) compile of the IW app.
You want the app to be HTTPS / SSL every where.
If so then this.
1) Leave ConnectionMode on the form(s) as cmAny
2) Make sure under sever controller module, that SSLOptions.NonSSLRequest := nsRedirect;
This will make sure HTTP://127.0.0.1:8080 will redirect the browser to HTTPS://127.0.0.1:8080
So I'll go with some assumptions.
You are using SA ( stand alone ) compile of the IW app.
You want the app to be HTTPS / SSL every where.
If so then this.
1) Leave ConnectionMode on the form(s) as cmAny
2) Make sure under sever controller module, that SSLOptions.NonSSLRequest := nsRedirect;
This will make sure HTTP://127.0.0.1:8080 will redirect the browser to HTTPS://127.0.0.1:8080

