Hi All,
I have only request queue name and do not have replyqueue name? How to proceed further. Is there any other way ??
Please help me
my script is like this.
class TestTranslationsJms extends Simulation {
val jmsConfig = jms
.connectionFactoryName(“ConnectionFactory”)
.url(“tcp://localhost:61616”)
.credentials(“admin”,“admin”)
.contextFactory(“org.apache.activemq.jndi.ActiveMQInitialContextFactory”)
.listenerCount(1)
.matchByCorrelationID
val scn = scenario(“JMS DSL test”).repeat(1) {
exec(
jms(“aps testing”).reqreply
.queue(“ABCNAMe”)
.textMessage(“Test Message”)
)
}
setUp(scn.inject(atOnceUsers(1))).protocols(jmsConfig)
}
Thanks,
Santosh Kulkarn