Issue surfaces only at certain proxies. Java made some adjusments in the authentication.
"Change in Java 8 Update 111:
Now, proxies requiring Basic authentication when setting up a tunnel for HTTPS will no longer succeed by default. If required, this authentication scheme can be reactivated by removing Basic from the jdk.http.auth.tunneling.disabledSchemes networking property, or by setting a system property of the same name to "" ( empty ) on the command line."
Either on poxy side:
upgrade the authentication scheme of your proxy, e.g. to Digest access authentication.
or on SAL GW modify /usr/java/jre1.8.0_161/lib/net.properties
from
#jdk.http.auth.proxying.disabledSchemes=
jdk.http.auth.tunneling.disabledSchemes=Basic
to
#jdk.http.auth.proxying.disabledSchemes=
jdk.http.auth.tunneling.disabledSchemes=
restart spiritAgent and gatewayUI services
Probably SP4 will have the fix.