Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Apache Jmeter issue- Non HTTP response message: Malformed IPv6 address at index 8:"TestURL"

Tags:

jmeter

Facing below error as in HTTP Request Defaults I haven't provided any HTTP in the server name/IP-

Response code: Non HTTP response code: java.net.URISyntaxException Response message: Non HTTP response message: Malformed IPv6 address at index 8:"TestURL"

like image 536
Lucifer Avatar asked Oct 31 '25 15:10

Lucifer


1 Answers

It normally happens when you put protocol into "Server Name or IP" field of the HTTP Request Sampler (or HTTP Request Defaults) . You should not put anything but application under test hostname or IP address there.

JMeter HTTP Request Design

If you are parameterising the whole URL - use "Path" section instead.

JMeter HTTP Request Path

Actually I believe it would be much easier just to record your test using JMeter's HTTP(S) Test Script Recorder. See Apache JMeter proxy Step-by-step guide for more details.

like image 55
Dmitri T Avatar answered Nov 03 '25 21:11

Dmitri T