Package org.apache.jmeter.protocol.http.util

Source Code of org.apache.jmeter.protocol.http.util.SSLStaticProvider

/**
* Title:        JMeter<p>
* Description:  <p>
* Copyright:    Copyright (c) Michael Stover<p>
* Company:      Apache JMeter<p>
* @author Michael Stover
* @version 1.0
*/
package org.apache.jmeter.protocol.http.util;

import java.security.Security;
import com.sun.net.ssl.internal.ssl.Provider;

public class SSLStaticProvider
{

  public SSLStaticProvider()
  {   // add ssl provider from jsse
    Security.addProvider(new Provider());
        // register https protocol handler with jsse provider
    System.setProperty("java.protocol.handler.pkgs",
            "com.sun.net.ssl.internal.www.protocol");
  }

}
TOP

Related Classes of org.apache.jmeter.protocol.http.util.SSLStaticProvider

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.