1

Here is the story: we have several servers connected to wamp (crossbar.io) I am creating load tests for part of this system and need a way to get info from wamp server to Jmeter.

So far I found only WS plugin for Jmeter, but it wont work with wamp. Any bright ideas?

gzost
  • 2,375
  • 1
  • 18
  • 25
Andrey
  • 11
  • 1

1 Answers1

1

Clearly wamp is a whole new protocol and JMeter doesn't support it out-of-the-box. Thankfully you can extend JMeter quite easily. If there are java or java family language bindings for your protocol system, you can use beanshell sampler (relatively less performant) or groovy through JSR223 sampler (better performance)

If you feel like it, you can always write up your own Wamp sampler as well.

RaGe
  • 22,696
  • 11
  • 72
  • 104