ContributionsMost RecentMost LikesSolutionsTrying to configure an Ingres DB driver to soapui/readyapi Trying to configure an Ingres DB driver to soapui/readyapi are there any specs on how to do this? I have tried just about every connection string format I could think of. Re: [Resolved] commit my delete statement in JDBC step Talk to me about auto-commit. It is a setting in ReadyAPI-Soapui? when i run an update sql statement, then, in a different test step, i run a select to verify that the update committed, it fails verification, until the testcase completes. so it seems that the commit doesn't 'commit' until after the soapui runtime is complete. Re: anyone know how to open the readyapi.h2.db file? I want to open it because that is where the transaction log from the interface is logged. I want to parse that info and prepare reports from it anyone know how to open the readyapi.h2.db file? re Re: running exe or bat file in groovy Or even: Process proc=Runtime.getRuntime().exec( 'C:\\DownloadLogFile.bat' ); proc.waitFor() which doesn't work either Re: running exe or bat file in groovy That works in most cases! Thanks! How would you deal with spaces in the folder such as(example only): Process proc=Runtime.getRuntime().exec("cmd /c start C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe"); proc.waitFor() trying to pass multiple bash commands via groovy and/or call a file What I am trying to do is ssh to a server, enter the user/password, then sudo, then cd to a directory all via groovy in soapui I'm able to login to the server using a cmd with: C:\\Putty\\putty.exe -ssh m123456@xxxxx.xx.xx.com -pw mypassword but I cant pass in the sudo commands. I tried C:\\Putty\\putty.exe -ssh m123456@xxxxx.xx.xx.com -pw mypassword -m D:\\BASH.txt OR C:\\Putty\\putty.exe -ssh m123456@xxxxx.xx.xx.com -pw mypassword -C 'sudo su - Aoss' Any clues? Re: running exe or bat file in groovy Nothing. The best i get is Script-result:java.lang.ProcessImpl@3ca1xxx. :( bummer. anybody having any success executing any .exe? Re: run shell command from test step Jason - Did you ever figure out how to do this? Thanks running exe or bat file in groovy Hi. i'm trying like crazy to run an .exe or a batch file via groovy in soapui. I've tried: def command = "cmd.exe /c h:\\BatchFile\\DownloadLogFile.bat" proc = command.execute() proc.waitForOrKill(5000) def torun = "C:\\Windows\\System32\\cmd.exe" proc = torun.execute() proc.waitForOrKill(5000) def torun = "h:\\BatchFile\\DownloadLogFile.bat" proc = torun.execute() proc.waitForOrKill(5000) No errors generate from groovy in soapui but no results either Thanks Solved