Window Freeze SoapUI

SoapUI 5.2.1 is currently in use, and I am experiencing an occasional freeze in the user interface window. This anomaly often occurs immediately after the call of the recreation service. The mentioned leisure services (s) from the previous and new boot call are smooth, but after a series of calls (s) the entire SoapUI window freezes.

Any hints of this?

+7
soapui
source share
3 answers

If you send a lot of requests through, for example, groovy, you will want to cancel the response to the request (this will prevent memory problems that freeze soapui)

enter image description here

Note. You must close the response window. If the response window is still open, you will still see the answer.

For more memory related settings, see: https://www.soapui.org/getting-started/working-with-soapui/improving-memory-usage.html

+2
source share

I started running tests only from the command line via / bin / testrunner for this reason (quite convenient if you use groovy scripts). I use the SoapUI GUI only to manage REST resources, test suites, and test cases.

0
source share

One possible solution is to disable the browser component

add -Dsoapui.browser.disabled=true to the vmoptions file
or uncomment such a line in soapui.bat

0
source share

All Articles