Reputation: 1
I want to send my request XML in BytesFormat to my request queue via jmeter. How to achieve that?.
Upvotes: 0
Views: 475
Reputation: 2977
Or you can use a tool like JMSToolBox where you can automate the sending of ByteMessages based on message templates
(I'm biaised, I'm the author of JMSToolBox)
Upvotes: 0
Reputation: 168142
Looking into underlying JMSSampler class source code it is not possible to send a BytesMessage using JMS Point-to-Point sampler, you will either have to go for
Upvotes: 0