SoapUI becomes unresponsive after launch on Mac OS X

Mac OS Version: Sierra 10.12.3 SoapUI Version: 5.3.0

Steps to play:

  • Launch SoapUI

  • Wait a few seconds

  • The mouse cursor turns into colourwheel

  • The activity monitor shows the SoapUI process as not responding: you need to kill the process to exit the application.

+7
macos soapui
source share
2 answers

Found solution here:

https://community.smartbear.com/t5/SoapUI-NG/SoapUI-Pro-5-1-2-hangs-on-Mac-OS-X-10-8-5/td-p/95626

cd /Applications/SoapUI-5.3.0.app/Contents 

In the java/app/bin/soapui.sh uncomment line 66 file:

 65 # uncomment to disable browser component 66 JAVA_OPTS="$JAVA_OPTS -Dsoapui.browser.disabled=true" 

In the vmoptions.txt file vmoptions.txt add the following line:

 -Dsoapui.browser.disabled=true 

Note This will disable the on-demand test.

+8
source share

Alternatively, you can go to SoapUI*.app , right-click and select "Show package information" (from the pop-up menu). Then you should see the Contents directory; open Info.plist and add the following lines:

 <key>soapui.jxbrowser.disable</key> <true/> 
+1
source share

All Articles