The problem is as follows:
- We have a SOAP API running behind TLS1.2 and SNI
- Our main software is stuck on JDK6 where it is basically impossible to connect to a server using SNI
- We need to use Axis 1.4 for SOAP calls
- We have set up a simple Apache Proxy rerouting calls to
http://proxyIP/foo
tohttps://mainIP/
The proxy works like a charm when tested manually or in a browser. However, using Axis to do the required SOAP calls fails with an Exception:
Unrecognized SSL message, plaintext connection?
What could cause this and how could we fix this?
Every idea is appreciated.