ContributionsMost RecentMost LikesSolutionsRe: Executing Multiple projects Parallel in Ready API Can u please share me a sample. I tried to run my project which has multiple Composite Ready API project. The command line gets executed in seconds, and I dont see it actually executing any project. Re: Executing Multiple projects Parallel in Ready API Hello Anastasia, I already have that log.info(project1.text) step. When I execute the project the log.info doesn't wait for the test to complete, it immediately writes the message as "Mon Oct 30 09:18:51 MDT 2017:INFO:" No message is written Thanks, Senthil Re: Executing Multiple projects Parallel in Ready API How differently I can do that from my initial question. There I am running as testrunner.bat only. Problem is I cant find if the test is executing and not able to see the results too Re: Executing Multiple projects Parallel in Ready API I see that teardown script is part of Security Testing. Not sure how to use it for executing parallel projects in SOAP UI. Executing Multiple projects Parallel in Ready API I am trying to execute multiple projects in Parallel in Ready API - SOAPUI NG as below in a groovy script: def project1 = ["C:/Program Files/SmartBear/ReadyAPI-2.0.0/bin/testrunner.bat", "-sSuite1", "-EDefault environment", "C:/gitRepo/service1"].execute() def project2 = ["C:/Program Files/SmartBear/ReadyAPI-2.0.0/bin/testrunner.bat", "-sSuite2", "-EDefault environment", "C:/gitRepo/service2"].execute() def project3 = ["C:/Program Files/SmartBear/ReadyAPI-2.0.0/bin/testrunner.bat", "-sSuite3", "-EDefault environment", "C:/gitRepo/service3"].execute() def project4 = ["C:/Program Files/SmartBear/ReadyAPI-2.0.0/bin/testrunner.bat", "-sSuite4", "-EDefault environment", "C:/gitRepo/service4"].execute() Upon executing, I get a message "Script-result: java.lang.ProcessImpl@198ab3m" How do I find if the script has actually called the individual composite projects and executed the test? What am I missing here? Thanks, Re: Wrong end point in response I have set Test as the active environment and still getting the wrong end point in response Wrong end point in response I built a test script pointing to the Integration Enviroment endpoint. Then Changed the endpoint to TEST in my request and it is actually hitting test point, but in the response XML it still shows the endpoint as Integration. I think it is getting cached somewhere. How do I clear it? Re: can I execute ready api scripts with soapui open source? It failed for most of the scenarios how to override endpoints and database names from external shell script in SOAPUI NG? we have defined Database connection strings and endpoints for multiple environments. When I pass the Environment names, it picks up the right database connection and endpoints and executes test correctly. When we run our script from Jenkins, we want to run on the new deployed instances, so we need to capture the endpoint from the CD job in jenkins and pass it to script. When we do this it takes the end point correctly, but it is not able to change the database connections. So, how do we override endpoints and database names from external shell script? I tried the below, it didn't work /var/lib/jenkins-wrk/SmartBear/ReadyAPI-1.9.0/bin/testrunner.sh -sdeployment "-RProject Report" -ehttp://xyz_test_1.10" ${WORKSPACE} Re: Does free version of SOAPUI 5.3.0 support swagger and postman plugins? It was empty. After downloading the plugins from GitHub and adding them here, it worked. Thank you