Hi, I just applied for the PRO version, but it doesn't seem to solve my problem. I have several service enpoints:
http://localhist:8080/,
https://testserver.company.tld/release/47/, ... and I want to be able to (1) run the test inside SoapUI (2) automatically run maven by maven.
I tried to add the path to the service enpoints, as I wrote, paths are ignored (for some unknown reason without any notice, ...)
I tried to add a project parameter ${#Project#endpoint-path} which allows me to dynamically set the enpoint in my project (GREAT!). However in maven, setting
<configuration>
<testSuite>UseCases</testSuite>
<endpoint>https://testserver:8999/</endpoint>
<projectProperties>
<endpoint-path>/release/47</endpoint-path>
</projectProperties>
<printReport>true</printReport>
<saveAfterRun>false</saveAfterRun>
</configuration>
does not overwrite it.
Do you have any other Ideas?
Cheers,
Jan