Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Warning status issue in jmeter result table

I have to do load testing for a web based application. I am getting status as warning the results table. My request contains the URL and the path as /. I have passed username and password in the parameters section. Even after tried many times still it shows status as warning.

I have also tried using Proxyserver address, port, user name and password ...still no luck..

Please help me on this.

like image 830
Kumar Avatar asked Nov 30 '25 16:11

Kumar


1 Answers

If you get a Warning status, this means that JMeter detected a response code > 399.

There can be a lot of reasons for this, examples:

  • Wrong URL : 404
  • Error : 500

To have more details on it, add a View Results Tree and inspect all tabs to see:

  • Request : What you are sending (headers / Cookies / body)
  • Response : What you are getting (headers / Cookies / body)

Then fix your HTTP request by comparing request in browser with what you have build.

Alternatively, use JMeter recording feature.

To see all ways to debug a script, have a look at this book where sample chapter explains lot of ways.

like image 144
UBIK LOAD PACK Avatar answered Dec 02 '25 06:12

UBIK LOAD PACK