Forum Discussion
SmartBear_Suppo
Alumni
12 years agoyou will have to do some groovy scripting if you want to dynamically change the Proxy while running on command line. Try something like this:
import com.eviware.soapui.SoapUI
import com.eviware.soapui.settings.ProxySettings
SoapUI.settings.setString( ProxySettings.HOST, "127.0.0.1" )
SoapUI.settings.setString( ProxySettings.PORT, "8888" )
Let me know if this helps.
Regards,
Temil
import com.eviware.soapui.SoapUI
import com.eviware.soapui.settings.ProxySettings
SoapUI.settings.setString( ProxySettings.HOST, "127.0.0.1" )
SoapUI.settings.setString( ProxySettings.PORT, "8888" )
Let me know if this helps.
Regards,
Temil