Introduction
This post describes how to install soapUI on Ubuntu 11.10 and solve potential issues with installation.
Installation
- Download linux version (soapui-4.0.1-linux-bin.zip file) of soapUI 4.0.1
- Unpack it to desired location
- Add execute permission to
bin/soapui.shfile:chmod +x bin/soapui.sh - Run soapUI
./soapui.sh
Troubleshooting
If you get following exception after running and your application closes:
# # A fatal error has been detected by the Java Runtime Environment: # # SIGSEGV (0xb) at pc=0x00007f6490c0a5f1, pid=28611, tid=140070162761472 # # JRE version: 6.0_29-b11 # Java VM: Java HotSpot(TM) 64-Bit Server VM (20.4-b02 mixed mode linux-amd64 compressed oops) # Problematic frame: # C [libgconf-2.so.4+0x175f1] __float128+0xc01 # # If you would like to submit a bug report, please visit: # http://java.sun.com/webapps/bugreport/crash.jsp # The crash happened outside the Java Virtual Machine in native code. # See problematic frame for where to report the bug. #
add -Dsoapui.jxbrowser.disable=true flag when executing soapUI.
In order to do so edit soapui.sh file and add the following line:
JAVA_OPTS="$JAVA_OPTS -Dsoapui.jxbrowser.disable=true"
Enjoy soapUI running.
4 Comments
Soap?? REST all the way, baby!
REST?! Sockets all the way!
Just won’t work. When i run the file i get the option to run or run in terminal. Neither do anything at all.
Thanks Joanna, I had this issue and this fixed it. First I added that line to the end of soapui.sh and did not work, but then I appended it at the end of the before-last if statement, and it worked.
One Trackback/Pingback
[...] I had a problem today where soapui 4.0.1 was crashing right after startup on my Linux box. This crash happened whether I used OpenJDK or Sun JREs and I was stumped until I found some great advice. [...]
Post a Comment