1. 程式人生 > >一次 JMeter 指令碼請求錯誤 HTTP Status 415 的解決筆記

一次 JMeter 指令碼請求錯誤 HTTP Status 415 的解決筆記

轉載自:https://blog.csdn.net/defonds/article/details/38495915
Badboy 錄製好指令碼以後,使用 JMeter 開啟,直接執行測試,發現有個 Ajax 提交表單的時候出錯了。伺服器返回資訊如下:
HTTP Status 415 -
type Status report
message
description The server refused this request because the request entity is in a format not supported by the requested resource for the requested method.

監聽器 “察看結果樹” 裡發現該次請求:

Request Headers:
Content-Length: 7207
Connection: keep-alive

既然是Json 請求,這個 Content-Type 肯定有問題。所以為該次請求修改請求頭裡的 Content-Type 修正為 application/json;charset=UTF-8 之後,問題解決。
這裡寫圖片描述

這裡寫圖片描述