Simulation with "mixed" protocols, both JMS and http possible?

Hi,

In my use case I would like to generate load using both http protocol and JMS protocol. Since the protocol is defined per setUp and only one setUp instance can be set per simulation this seems not possible. Is there some work around available or should I just run two simulations simultaneously?

Cheers

Daniel

Hello,

You can set up the protocol on a scenario level →

val scnList = List(
myjmsscenario.inject(rampUsers(5) over (10 second).protocols(jmsConf),
myhttpscenario.inject(rampUsers(1) over (15 second).protocols(httpConf)
)

setUp(scnList)

Regards,

Sebboh.

Hi Sebboh,

Works like charm, thanks! I feel so stupid, I thought I had tried that setup already. Time for some coffee :slight_smile:

cheers

Daniel