1

I need to load-test my raw tls server. I try jmeter, but it seems no ssl/tls sampler available(only bundled with http). How can i load - test raw ssl with jmeter? Or maybe there is a better solution?

cynepnaxa
  • 1,024
  • 1
  • 14
  • 30

1 Answers1

2

If you have a Java Client available for your GOST TLS then your best option is to extend:

https://jmeter.apache.org/api/org/apache/jmeter/protocol/java/sampler/AbstractJavaSamplerClient.html

And use Java Request Sampler that will show your implementation in select box:

See :

UBIK LOAD PACK
  • 33,980
  • 5
  • 71
  • 116
  • Awesome! Big thanks! I think you save my week. It's so important, to dig in right direction. I'll try to implement it now. – cynepnaxa May 03 '15 at 13:24