Forum Discussion
MarcusJ
Staff
10 years agoHi,
You can change the SSL settings in the SSL preferences dynamically by using the below groovy script.
import com.eviware.soapui.SoapUI
import com.eviware.soapui.settings.SSLSettings
SoapUI.getSettings().setString(SSLSettings.KEYSTORE, "mykeystore.jks");
SoapUI.getSettings().setString(SSLSettings.KEYSTORE_PASSWORD, "mypassword");
Regards,
Marcus
SmartBear Support