ContributionsMost RecentMost LikesSolutionsJDBC step with null param ends up in the infinite loop (on Jenkins) Hello, we've recently came over this issue, not sure if it's bug or logical problem with our tests... simplified explanation: - test case has property step - test case has script step which (if is successfull) fills property step with...let's call it prop1=value1 - test case has JDBC step selecting SELECT * FROM "foo" WHERE "foo"='${properties#prop1}' now the trouble starts when script step fails and does not fill the property... so there's select null value call ...locally from soapUI 5.7.0 it's all good, however once it happends on remote server, e.g. Jenkins - there's the infinite loop going on (log below) 02:08:50 02:08:48,754 INFO [SoapUITestCaseRunner] running step [SELECTxxxxxx] Aborted by XXXX 07:12:31 Sending interrupt signal to process Does anybody have experience with this? Kind regards, Vladimir Passing complex Java Object as context through the test execution Hello, is it possible to store complex Java Object - e.g. in my case JMS Connection object into the SoapUI context variable(or somehow else), to pass it between tests/ steps, through the run? I am not sure how exactly context variables works in the soapUI, is it something like a hashmap <String, AnyObject> ? Or do I get it wrong? Thanks, Vladimir. Running SoapUI as MVN with new javaHello, I have a question about the soapui mvn plugin - My framework is running tests on jenkins server with the plugin - problem for me is, that this plugin supports just older versions of Java, e.g. it does not recognizes java8 functionalities like lambdas, etc. Is there a way to use the plugin on rhe server with newer java version somehow? Thanks, Vladimir[SoapUI] Groovy script calling evaluate(File) function has problems with my project's package Hello, just briefly explaining the concept: I have git repo, mvn project with structure: My soapUI is using script step alongside with groovy function evaluate(File) -> to run the script .groovy file now this is working okay, the problem came when I started to create my own helper classes under src/main/java/myPackage ....while checking and running scripts from IDEA, classes are imported to the scripts fine and are working; when I try to evaluate same working script file from SoapUI script step, I am getting error: No class found Solved