aepdwm
12 years agoNew Contributor
Jetty Server stop after testrun(project)
Hi all,
can somebody help me at following problem.
Problem:
I try to get the Jetty Server Instance from SoapUI, which is initialized at the runtime, for example a project with mock responses is started.
Background information:
My goal is to stop the "Jetty server" with a groovy script after a testrun.
So far I have achieved, to managed and create a own server instance with following script.
Thanks a lot and regards.
aepdwm
can somebody help me at following problem.
Problem:
I try to get the Jetty Server Instance from SoapUI, which is initialized at the runtime, for example a project with mock responses is started.
Background information:
My goal is to stop the "Jetty server" with a groovy script after a testrun.
So far I have achieved, to managed and create a own server instance with following script.
import com.eviware.soapui.impl.wsdl.monitor.jettyproxy.JettyServer
js = new JettyServer()
js.start()
js.stop()
log.info(js.isRunning())
Thanks a lot and regards.
aepdwm