ContributionsMost RecentMost LikesSolutionsSOAPUI 4.5Hi every on Here is my goal: I have already a test case But I want to add a new feature. 1) I want to read datas from a CSV file. The 2) loop over each lines of the CSV file 3) Set my tests case properties from datas 4) execute my test case I start to write the groovy script but when I run my test case soapui freeze log.info("Start script") def tc = testRunner.testCase def file = new File('/tmp','test.csv') def lines = file.readLines() def i = 0 for(i = 1; i < lines.size; i++) { def datas = lines[i].split(";") def j = 0 for(j = 0; j < datas.length; j++) { tc.setPropertyValue( "Prop1",datas[0] ) tc.setPropertyValue( "Prop2",datas[1] ) tc.setPropertyValue( "Prop2",datas[2] ) tc.setPropertyValue( "Prop4",datas[3] ) tc.setPropertyValue( "Prop5",datas[4] ) tc.setPropertyValue( "Prop6",datas[5] ) } } log.info("End of script") I added logs and I saw that the csv file has been read and I can see datas extracted from the file my script works well except if I add the following line: tc.run(new com.eviware.soapui.support.types.StringToObjectMap(), false) My script then becomes def tc = testRunner.testCase def file = new File('/tmp','test.csv') def lines = file.readLines() def i = 0 for(i = 1; i < lines.size; i++) { def datas = lines[i].split(";") def j = 0 for(j = 0; j < datas.length; j++) { tc.setPropertyValue( "Prop1",datas[0] ) tc.setPropertyValue( "Prop2",datas[1] ) tc.setPropertyValue( "Prop2",datas[2] ) tc.setPropertyValue( "Prop4",datas[3] ) tc.setPropertyValue( "Prop5",datas[4] ) tc.setPropertyValue( "Prop6",datas[5] ) } tc.run(new com.eviware.soapui.support.types.StringToObjectMap(), false) } and then soapui freeze Did anyone had this problem ? best regardsRe: loadUI javax.net.ssl.SSLHandshakeExceptionHello I have exactly the same problem Did you succeed to fix this problem ? best reagrdsProblem loadui certificate settingHi I'm using loadui release 2.1.0 and Soapui release 4.0.0 in order to launch load charge The target server need a certificate so I updated SSL settings in soapui filling KeyStore, KeyStore Password fields and I checked the checkbox "requires client authentication" When I execute my test step from soapui every think is fine and working. I have response from server. But when I'm running my test step from loadui I have the following error 2013-04-09 10:19:24,877 ERROR [errorlog] java.security.KeyStoreException: failed to extract any certificates or private keys - maybe bad password? java.security.KeyStoreException: failed to extract any certificates or private keys - maybe bad password? The certficate is a *.cer file Did some one has this error ? Any idea to fix this problem ? Best regards ThanksRe: Adding SSL Certificate for encryption without passwordHello Philip I have the same problem that you posted on your topic for loadui SSL error: java.security.KeyStoreException: Can't build keystore: [Private key missing (bad password?)]> Did you find any solution ? Best regards Thanks