美文网首页百人计划
JMeter 脚本请求错误 HTTP Status 415

JMeter 脚本请求错误 HTTP Status 415

作者: 倔强的潇洒小姐 | 来源:发表于2018-03-23 11:44 被阅读18次

    网上找了一个航班的接口用来练习
    接口地址:http://ws.webxml.com.cn/webservices/DomesticAirline.asmx
    接口名称:getDomesticAirlinesTime

    1、创建线程
    2、添加HTTP请求

    添加HTTP请求.png

    3、添加HTTP信息头管理器,配置信息

    配置HTTP信息头管理器.png

    4、添加监听器(查看结果树)

    5、执行
    运行时出错了,服务器返回 Response code: 415,Response message: Unsupported Media Type
    查看HTTP状态码含义,405为 禁用请求中指定的方法,根据提示信息是type类型不对,接着往下看,查看服务器返回的结果

    HTTPSampleResult fields:
    ContentType: c
    DataEncoding: null
    
    查看结果.png

    解决办法:修改content-type为text/html

    再次运行后成功

    image.png

    相关文章

      网友评论

        本文标题:JMeter 脚本请求错误 HTTP Status 415

        本文链接:https://www.haomeiwen.com/subject/yjbtcftx.html