Thanks for the response, but the error happens when I use the pro version as well.
maven dependency:
<dependency>
<groupId>eviware</groupId>
<artifactId>maven-soapui-pro-plugin</artifactId>
<version>3.6.1</version>
</dependency>
groovy script that execute the test:
test void test_soapui_project() {
runner.setProjectFile "jsoapui-project.xml"
runner.run()
}
when I execute mvn clean install the datasink step does not apply the data to the following request:
<soapenv:Envelope xmlns:soapenv="
http://schemas.xmlsoap.org/soap/envelope/" xmlns:v1="
http://xmlns.test.com/test/ds/v1.0"> <soapenv:Header/>
<soapenv:Body>
<v1:getTree><id>${DataSink to get test ID#TestID}</id></v1:getTestTree>
</soapenv:Body>
</soapenv:Envelope>
NOTE: the same test works fine when I am using the soapUI Pro 3.6.1 desktop application.
I am missing something?
Thanks once again