I finally found why my test does not run with https server :

This is due to the server, java, and client authentification : I do not own
a certificate, nor I want to.

I ran a sample socket test, to check that :


    SSLSocket socket = (SSLSocket)
SSLSocketFactory.getDefault().createSocket(
        HTTPS_SERVER.substring("https://".length()), 443);
//    socket.setEnabledProtocols(new String[] {
//      "SSLv3"
//    });
    socket.startHandshake();
    socket.getOutputStream().write("GET /
HTTP/1.0\r\n\r\n".getBytes("ASCII"));
    Scanner sc = new Scanner(socket.getInputStream());
    System.out.println(">>>");
    while (sc.hasNextLine())
      System.out.println(sc.nextLine());
    System.out.println("<<<");


That don't work untill I uncomment the commented lines.



Now, that I figured the problem, I'd like to fix it and I don't find any
proper way to disable TSL1.0 (which fails) :

Setting https.protocols won't help (tested, and failed)

Is there a way to specifiate that I want to use SSLv3, not TLS in jmeter?
(except from running deep into the code)



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to