Re: JVM Argument at Runtime
Posted by junoyoon on
URL: http://ngrinder.373.s1.nabble.com/JVM-Argument-at-Runtime-tp733p734.html
JVM Argument? You mean.. you should provide -Doption_name=option_value?
nGrinder doesn't support to add the jvm argument because there are possibility to abuse the agent.
Instead, you can provide this setting by just calling System.setProperty("option_name", "option_value") directly in script.
If you're using Groovy, put it in the @BeforeProcess block. If you're using Jython, put it in the global scope of the script.
Mostly it works!!