In this article we are going to see how can we configure jmeter by changing property of JMeter. In this section we will see the Proxy Server settings in jmeter.propertie.

In the jmeter installed bin directory(in my case C:\apache-jmeter-2.8\bin), we get a file named jmeter.properties. Open this with note pad.

-To set domain for command-line flags [with user-name and password]
http.proxyDomain=NTLM domain
[If required by HTTPClient sampler],Example :
http.proxyDomain = RELISOURCE
[This is my company domain name]

-To set SSL configurations
proxy.cert.directory=.
proxy.cert.file=proxyserver.jks
proxy.cert.type=JKS
proxy.cert.keystorepass=password
proxy.cert.keypassword=password
proxy.cert.factory=SunX509
proxy.ssl.protocol=SSLv3

Note : to manage keystore file(.jks) we can use a free tool from here.

..Thanks...:)