Considering this line, at jmeter executable file, java $ARGS $JVM_ARGS -jar `dirname $0`/ApacheJMeter.jar "$@"
and if you're under a *nix SO, you should do this, directly from command prompt: JVM_ARGS="-Dhttp.proxyHost=<proxyhostURL> -Dhttp.proxyPort=<proxyPortNumber> -Dhttp.proxyUser=<someUserName> -Dhttp.proxyPassword=<somePassword>" jmeter <other arguments> or you could add JVM_ARGS variable inside jmeter executable file, before "java $ARGS ..." line: # jmeter executable configuration before this line ... # proxy server configuration JVM_ARGS="$JVM_ARGS -Dhttp.proxyHost=<proxyhostURL> -Dhttp.proxyPort=<proxyPortNumber> -Dhttp.proxyUser=<someUserName> -Dhttp.proxyPassword=<somePassword>" java $ARGS ... under a Windows or Mac environment you should use a seamlessly approach. Remember that, if you modify the executable, you will have to comment those lines to execute a test without the proxy server configuration. Hope it helps. Flávio Cysne 2012/8/20 Samaraweera, Ravinda <[email protected]> > Hi Flavio, > > Thanks, > Really appreciate if you can tell me the steps to modify the file. > If I copy the same and change the proxyhosturl, proxyPortNumber, > someUserName, somePassword would it be fine? > > Chi. > > -----Original Message----- > From: Flavio Cysne [mailto:[email protected]] > Sent: Friday, August 17, 2012 5:15 PM > To: JMeter Users List > Subject: Re: Performance test on Internal web Application (LAN) > > Did you try to use java proxy settings on jmeter command line or jmeter.sh > VMARGS variable? > > -Dhttp.proxyHost=proxyhostURL > -Dhttp.proxyPort=proxyPortNumber > -Dhttp.proxyUser=someUserName > -Dhttp.proxyPassword=somePassword > > Hope it helps. > Flávio Cysne > > 2012/8/17 Samaraweera, Ravinda <[email protected]> > > > Dear All, > > > > I have an issue with doing performance testing on web application in > > LAN, my issue as follows, > > > > 1. How to logging to internal LAN through jmeter? To access a URL > > (which is deployed in app server and published in proxy server (SAME > > LAN)) > > 2. When I tried to access the same web site from firefox it prompts > > for username and password, when I provide those I can see the 1st page > > of the web site. But through jmeter it doesn't. > > It says running and running but never stops and I have > > forcefully shutdown to run the script again. > > 3. Our LAN is bit secured network, I have tried with HTTP > > authorization manager but didn't work. > > > > Note: Im using jmeter latest version which I have downloaded recently, > > > > Can anyone help me pls. Love to hear from someone who can help > > me out. > > > > Thanks > > Chi > > > > *********************************************************************** > > Disclaimer > > > > The information contained in this communication is confidential and may > be > > legally privileged. > > It is intended solely for the use of the individual or entity to whom it > > is addressed and others authorised to receive it. > > If you are not the intended recipient you are hereby notified that any > > disclosure, copying, > > distribution or taking action in reliance of the contents of this > > information is strictly prohibited and may be unlawful. > > KPMG is neither liable for the proper, > > complete transmission of the information contained in this communication > > nor any delay in its receipt. > > *********************************************************************** > > > > > *********************************************************************** > Disclaimer > > The information contained in this communication is confidential and may be > legally privileged. > It is intended solely for the use of the individual or entity to whom it > is addressed and others authorised to receive it. > If you are not the intended recipient you are hereby notified that any > disclosure, copying, > distribution or taking action in reliance of the contents of this > information is strictly prohibited and may be unlawful. > KPMG is neither liable for the proper, > complete transmission of the information contained in this communication > nor any delay in its receipt. > *********************************************************************** > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > >
