Package Details: soapui 5.7.0-1

Git Clone URL: https://aur.archlinux.org/soapui.git (read-only, click to copy)
Package Base: soapui
Description: A graphical Java program for inspecting, invoking, monitoring, simulating/mocking and functional/load/compliance/surveillance testing of REST/WADL and SOAP/WSDL-based Web Services over HTTP.
Upstream URL: http://www.soapui.org/
Licenses: EUPL V.1.1
Submitter: dguihal
Maintainer: dguihal
Last Packager: dguihal
Votes: 111
Popularity: 0.005257
First Submitted: 2009-03-16 14:05 (UTC)
Last Updated: 2022-01-22 09:52 (UTC)

Dependencies (3)

Required by (0)

Sources (4)

Latest Comments

1 2 3 4 5 6 .. 8 Next › Last »

Archrist commented on 2022-08-31 14:31 (UTC)

missing dependencies ttf-dejavu only works with JAVA_HOME=11 ...

PernelCanic commented on 2021-01-22 15:05 (UTC) (edited on 2021-01-22 15:07 (UTC) by PernelCanic)

For others having issues: it works for me when using OpenJDK 11, but fails with OpenJDK 14

# Works
$ JAVA_HOME=/usr/lib/jvm/java-11-openjdk soapui

# Fails, producing fatal error
$ JAVA_HOME=/usr/lib/jvm/java-14-openjdk soapui

RealGecko commented on 2020-11-09 10:37 (UTC)

==> Missing dependencies: -> java-environment>=12

But I have jre-openjdk and java-openjfx installed(both version 14). Any ideas?

sonbui00 commented on 2020-10-09 03:56 (UTC) (edited on 2020-10-09 03:57 (UTC) by sonbui00)

It does not support Java 8 now. I have installed java 11: java11-openjfx

And run: export JAVA_HOME=/usr/lib/jvm/java-11-openjdk/ && soapui

cknoblauch commented on 2020-07-30 17:01 (UTC)

@guihal, could you add the following to the build() function? $JAVA_HOME is being replaced to launch the main app but not to locate jfx.

sed -i -e 's/"java/${JAVA_HOME}\/bin\/"java /' bin/soapui.sh

titosemi commented on 2020-02-05 08:41 (UTC)

@el_kleino you are totally right. Thanks a lot!

el_kleino commented on 2020-02-04 12:18 (UTC)

@titosemi Afaik, jdk8-openjdk doesn not include JavaFx, so you'll probably have to install java8-openjfx for that

titosemi commented on 2020-01-16 14:47 (UTC) (edited on 2020-01-16 14:48 (UTC) by titosemi)

Works perfectly with your suggestion. Thanks.

I saw your previous comment about sourcing that file but I wasn't sure where it needed to be sourced from.

Any tip on how to solve: [main] WARN com.eviware.soapui.SoapUI - Could not find jfxrt.jar. Internal browser will be disabled.

class101 commented on 2020-01-16 14:34 (UTC)

Rather than exporting JAVA_HOME, upon installing openjdk8 you are asked to source the provided jre.sh

[ -r /etc/profile.d/jre.sh ] && . /etc/profile.d/jre.sh

to /etc/bash.bashrc

So you don't need anymore such dirty export.

titosemi commented on 2020-01-16 13:37 (UTC)

I got it to work after installing jdk8-openjdk and exporting JAVA_HOME.

export JAVA_HOME=/usr/lib/jvm/java-8-openjdk/ && soapui