Re: Ngrinder 샘플 스크립트 에러 - javax.net.ssl.SSLException: Received fatal alert
Posted by junoyoon on
URL: http://ngrinder.373.s1.nabble.com/Ngrinder-javax-net-ssl-SSLException-Received-fatal-alert-tp2582p2590.html
TLS 의 문제로 보이구요..
@BeforeProcess
public static void beforeProcess() {
java.lang.System.setProperty("https.protocols", "TLSv1,TLSv1.1,TLSv1.2");
HTTPPluginControl.getConnectionDefaults().timeout = 6000
test = new GTest(1, "livr.epiclive.io")
request = new HTTPRequest()
grinder.logger.info("before process.");
}
구문내에
java.lang.System.setProperty("https.protocols", "TLSv1,TLSv1.1,TLSv1.2");
를 넣어서 실행해 보세요.