ContributionsMost RecentMost LikesSolutionsMsg2 Msg2 Msg1 msg1 SoapUI Open Source Certification Hi Team, I'm planning for SoapUI Open Source Certification. From the portal, i can see link for registration. But, before registration i wanted to see what kind of Topics & questions they cover in the certification exam. So, If anyone already participated in this certification exam, help me to understand about the Topics/questions? Any link to previous exam will also help. -VJ Re: SOAPUI Groovy to run .exe files Thanks krogold for your response. For now I'm using below to run the .exe with the help of .bat file. It is successfully launching the .exe file. But, the issue here is I'm not getting complete response in the groovy. receiving only a part of response (even after changing no.of characters in the char buffer) . Is it possible to get complete response? (I'm not sure it is possible or not but, I'm looking response something like which we get in any of the IDE) import java.io.InputStreamReader ProcessBuilder pb = new ProcessBuilder("cmd","/c","C:\\dummy.bat") pb.redirectErrorStream(true) Process p = pb.start() InputStreamReader isr = new InputStreamReader(p.inputStream) char[] cbuf = new char[1024]; //read 1024 characters, increse to higher amount if necessary isr.read(cbuf); log.info(new String(cbuf)) SOAPUI Groovy to run .exe files Hi Team, I wanted to run exe file as part of my SOAPUI test case execution. And i'm trying to figure out a way to run exe file and capture response in the groovy script from SOAPUI. Can someone provide a lead to do this?