How to prevent connection to port 80 redirection

We use our load balancing switch to offload SSL for all communications between the browser and the switch are SSL communication between the APEX (on Tomcat) application and the switch remains in clear text.

If I have access to the APEX application using https, then the login page appears safe. After clicking the "Sign In" button on the login page, the redirect only retains the https - the URL is replaced to http. We use custom authentication, the "connect" button called "apex_authentication.login".

In the User Interface, the home page URL is set on "f?" p = & APP_ID.:1: & SESSION. "As this contains only the root of context, I would not expect to change the https to http protocol.  Once I'm connected to the application, I can change the URL https and all the subsequent response remains as https - until I connect.

Is there a login and logout parameter we need to load APEX we use SSL offloading? Why it changes the Protocol not only the part of the URL after the context root?

Help!

See you soon,.

Brent

OK, I managed to get this work turned on a simple change in Tomcat's server.xml file was just what he needed. The fields I added were proxyName, proxyPort, plan and secure.  This makes Tomcat believe he received a connection, even when it does not. Similarly, when the application of ADR makes a request of the Tomcat application type, it says that the connection is secure, so the connection and disconnection, it uses the correct URL.

connectionTimeout = "20000".

redirectPort = "8443".

proxyName = "apps.hmdclinical.com"

proxyPort = "443".

scheme = "https"

course = "true" / >

See you soon,.

Brent

Tags: Database

Similar Questions

Maybe you are looking for