Groovy in SOAP UI

Archive for September 8th, 2008

using ext folder of SOAP UI

Posted by: devakara on: September 8, 2008

SOAP UI has added experimental support for 3rd-party libraries in “ext” folder relative to startup folder, normally soapui/bin.
Developer can place all external jars required by the Groovy script, in this ext folder (generally the location is  %SOAP_UI_HOME%\bin\ext).  Logic is all the jars in ext folder are set to classpath automatically on SOAP UI start-up; so [...]

getting DB connection with Groovy

Posted by: devakara on: September 8, 2008

Connecting to DB inside Test Steps for various processes is required most often in any Test Suite. So how do we get a connection of DB2 database (for that matter any database) using Groovy in SOAP UI ?
Its simple, basically we will get an sql instance first using parameters like JDBC connection URL, driver class [...]