Package org.apache.jmeter.util
Class TrustAllSSLSocketFactory
java.lang.Object
javax.net.SocketFactory
javax.net.ssl.SSLSocketFactory
org.apache.jmeter.util.TrustAllSSLSocketFactory
This class can be used as a SocketFactory with SSL-connections.
Its purpose is to ensure that all certificates - no matter from which CA - are accepted to enable the SSL-connection.
This is of course not secure
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncreateSocket
(String host, int port) createSocket
(String host, int port, InetAddress localHost, int localPort) createSocket
(InetAddress address, int port) createSocket
(InetAddress address, int port, InetAddress localAddress, int localPort) createSocket
(Socket socket, String host, int port, boolean autoClose) static SocketFactory
Factory methodString[]
String[]
Methods inherited from class javax.net.ssl.SSLSocketFactory
createSocket
-
Constructor Details
-
TrustAllSSLSocketFactory
public TrustAllSSLSocketFactory()Standard constructor
-
-
Method Details
-
getDefault
Factory method- Returns:
- New TrustAllSSLSocketFactory
-
createSocket
public Socket createSocket(Socket socket, String host, int port, boolean autoClose) throws IOException - Specified by:
createSocket
in classSSLSocketFactory
- Throws:
IOException
-
createSocket
public Socket createSocket(InetAddress address, int port, InetAddress localAddress, int localPort) throws IOException - Specified by:
createSocket
in classSocketFactory
- Throws:
IOException
-
createSocket
- Specified by:
createSocket
in classSocketFactory
- Throws:
IOException
-
createSocket
public Socket createSocket(String host, int port, InetAddress localHost, int localPort) throws IOException - Specified by:
createSocket
in classSocketFactory
- Throws:
IOException
-
createSocket
- Specified by:
createSocket
in classSocketFactory
- Throws:
IOException
-
createSocket
- Overrides:
createSocket
in classSocketFactory
- Throws:
IOException
-
getDefaultCipherSuites
- Specified by:
getDefaultCipherSuites
in classSSLSocketFactory
-
getSupportedCipherSuites
- Specified by:
getSupportedCipherSuites
in classSSLSocketFactory
-