Jackranda
Jackranda

Reputation: 57

JMeter - 407 Response message:Proxy Authentication Required while playback blazemeter recording

I have jmeter version 5.2.1. I have recorded a blaze meter script. I opened jmeter from command prompt using the below syntax (jmeter -H proxy -P 80 -u username -a password)

Then on the GUI, I have given the proxy details in HTTPRequestDefault, also at the test level as shown in the screenshot.

But still I keep getting Response code:407 Response message:Proxy Authentication Required

enter image description here

enter image description here

Upvotes: 1

Views: 2027

Answers (2)

Jackranda
Jackranda

Reputation: 57

Managed to find the issue. I had to change the implementation dropdown to Java

enter image description here

Upvotes: 0

Dmitri T
Dmitri T

Reputation: 168002

If you're using domain credentials you need to supply another property to let JMeter know about your network domain, in particular http.proxyDomain

So you need to launch JMeter as:

jmeter -Jhttp.proxyDomain=YOUR_DOMAIN_HERE

in order to make change permanent - add the next line to user.properties file (lives in "bin" folder of your JMeter installation)

http.proxyDomain=YOUR_DOMAIN_HERE

More information:

Upvotes: 0

Related Questions