如何在 JMeter 中测试 IBM WebSphere Message Broker
我有一个场景,需要在 JMeter 中测试 IBM WebSphere Message Broker(JMS 请求)。
目前我有以下详细信息。使用以下信息,我可以知道如何在 JMeter 中创建此脚本。
例子 : 队列管理器名称:ACE config SVR/TCP/localhost(1414), 队列名称:DNB LT.SRVC, XML 有效负载
此外,手动测试团队正在使用 RHF 实用程序来执行此测试。
I have a scenario where i need to test the IBM WebSphere Message Broker(JMS request) in JMeter.
Currently i have below details with me. Using this below information, may i know how to create this script in JMeter.
Example :
Queue manager name : ACE config SVR/TCP/localhost(1414),
Queue name : DNB LT.SRVC,
XML Payload
Also, Manual testing team is using the RHF utility to perform this testing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信最好的选择是 JSR223 Sampler 和自定义 Groovy 代码。
下载 com.ibm.mq 的相关版本。 allclient 并将其拖放到 JMeter 安装的“lib”文件夹中(或 JMeter 类路径)
重新启动 JMeter 以获取 .jar
将 JSR223 Sampler 添加到您的测试计划
将以下代码放入“脚本”区域
运行测试并且应该发送消息
更多信息:使用 JMeter 进行 IBM MQ 测试 - 了解如何操作
I believe the best option is going for JSR223 Sampler and custom Groovy code.
Download the relevant version of com.ibm.mq.allclient and drop it to "lib" folder of your JMeter installation (or other location which is in JMeter Classpath)
Restart JMeter to pick the .jar up
Add JSR223 Sampler to your Test plan
Put the following code into "Script" area
Run your test and the message should be sent
More information: IBM MQ testing with JMeter - Learn How