Reputation: 57
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
Upvotes: 1
Views: 2027
Reputation: 57
Managed to find the issue. I had to change the implementation dropdown to Java
Upvotes: 0
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