Forum Discussion
omatzura
17 years agoSuper Contributor
Hi!
You have 2 options:
1) Set the global ssl-settings in your code with
SoapUI.getSettings().setString( SSLSettings.KEYSTORE, "..." )
SoapUI.getSettings().setString( SSLSettings.KEYSTORE_PASSWORD, "..." )
2) Add a Keystore to the WSS Settings in your project (in the project window, WS-Security tab) and then specify that keystores' name for the SslKeystore property on the testrequest in your testcase (not the standalon wsdlrequest);
WsdlTestRequestStep wsdlTestRequestStep = wsdlTestCase.getTestStepByName("GetXX");
wsdlTestRequestStep.getTestRequest().setSslKeystore( ".." )
Hope this helps!
/Ole
eviware.com
You have 2 options:
1) Set the global ssl-settings in your code with
SoapUI.getSettings().setString( SSLSettings.KEYSTORE, "..." )
SoapUI.getSettings().setString( SSLSettings.KEYSTORE_PASSWORD, "..." )
2) Add a Keystore to the WSS Settings in your project (in the project window, WS-Security tab) and then specify that keystores' name for the SslKeystore property on the testrequest in your testcase (not the standalon wsdlrequest);
WsdlTestRequestStep wsdlTestRequestStep = wsdlTestCase.getTestStepByName("GetXX");
wsdlTestRequestStep.getTestRequest().setSslKeystore( ".." )
Hope this helps!
/Ole
eviware.com