ContributionsMost RecentMost LikesSolutionsMissing File: soapui\src\main\catalog\resolver-catalog.xml Hi, I am trying to compile soapui opensource source code, but an error is thrown as soapui\src\main\catalog\resolver-catalog.xml missing. please let me know if there is any solution for this. Re: SoapUI JDBC connection not working in ReadyAPI Try this Groovy import oracle.jdbc.driver.OracleDriver import groovy.sql.Sql com.eviware.soapui.support.GroovyUtils.registerJdbcDriver("oracle.rdb.jdbc.rdbThin.Driver") sql = Sql.newInstance("jdbc:rdbThin://servername:port/dbname","username","password") def query = "select * from table" def res = sql.rows(query) Re: SoapUI NG Pro integration with Jenkins? Hi, I never tried jenkins plugin But below is my solution install jenkins, >>create new project, video is availiable in youtube. follow that in the configuration you will find a box named Execute Windows batch command as below now go to SoapUI and launch test runner for your project and in the output window you will get batch command to run your project as below copy and paste it with modification required. Hope this will help you... Re: running exe or bat file in groovy tomptomp When Creating exe, make it to return error codes (integer can be returned from exe) and while the below command is executed, proc = command.execute() error codes will be stored in "proc" variable. use this variable to check the result. Hope this helps. Re: retry failed testCase yassir Write a script to check the assertions and set a custom property to Pass/Fail. Re: retry failed testCase yassir I would suggest to use a custom property to store and write the test case result. Re: Can't get node values ncandy try this import groovy.xml.XmlUtil def groovyUtils = new com.eviware.soapui.support.GroovyUtils( context ) def holder = groovyUtils.getXmlHolder( "Soap1#Request" ) //replace "Soap1" with your request name //for( item in holder.getNodeValues( "//tem:Add/tem:intA" )) //log.info "Item : [$item]" log.info holder.getNodeValue( "//tem:Add/tem:intA" ) Re: How to run a bat file which is present in some other location on the Computer Sunny2 As per my knowledge Script-Result-1 is failure and 0 is success. If you are providing any file as input in .batfile , please use absolute path. The .bat files are command line tools and are processed in Background so you cannot see any window. Below is the batfile I used to test. =============my.bat================ @echo off echo This is a test Mkdir d:\rt ================================== Re: data export tvåljuaj If you are stuck in this problem follow below steps. 1) Store each result as you want in a custom property 2) write it in to a CSV file as you need using groovy 3) Reset all the values of custom property to null note:- Above stated is a suggestion. Re: retry failed testCase yassir create a groovy script: if(testRun < 3) { testRunner.gotoStepByName("StepName") }