https://bz.apache.org/bugzilla/show_bug.cgi?id=57319
--- Comment #7 from Gordon McKinney <[email protected]> --- *** NOTE *** Even with these changes SSL SNI is not supported. You need to make the following two changes and then server_name / SNI / Subject-Alternative-Naming works. FILE: ./src/protocol/http/org/apache/jmeter/protocol/http/util/HC4TrustAllSSLSocketFactory.java 26a27 > import javax.net.SocketFactory; 74c75,77 < return factory.createSocket(); --- > // Does not work with SSL SNI: return factory.createSocket(); > // Fix below: > return SocketFactory.getDefault().createSocket(); 82c85,87 < return factory.createSocket(); --- > // Does not work with SSL SNI: return factory.createSocket(); > // Fix below: > return SocketFactory.getDefault().createSocket(); -- You are receiving this mail because: You are the assignee for the bug.
