Jmeter WebService 压力测试


Jmeter WebService 压力测试

WebService本质也是http协议,所有可以使用http请求sampler实现

案例

查询电话号码归属地

实现步骤

  1. 创建线程组
  2. 创建配置元件->http信息头管理器 ContentType text/xml;charset=utf-8
  3. 创建http请求sampler

<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>
  1. 添加查看结果树