Jmeter WebService 压力测试 Jmeter FTP压力测试 Jmeter BeanShell取样器 Jmeter WebService 压力测试 WebService本质也是http协议,所有可以使用http请求sampler实现 案例 查询电话号码归属地 实现步骤 创建线程组 创建配置元件->http信息头管理器 ContentType text/xml;charset=utf-8 创建http请求sampler 方法:post 路径:http://ws.webxml.com.cn/WebServices/MobileCodeWS.asmx 信息体数据: <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <getMobileCodeInfo xmlns="http://WebXml.com.cn/"> <mobileCode>15011039890</mobileCode> <userID></userID> </getMobileCodeInfo> </soap:Body> </soap:Envelope> 添加查看结果树 Jmeter FTP压力测试 Jmeter BeanShell取样器