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?
Asked
Active
Viewed 853 times
1
-
Can you not use the HTTP sampler? – RaGe Apr 30 '15 at 10:11
-
No, my server use raw bytestream. – cynepnaxa May 02 '15 at 11:15
1 Answers
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