i can confirm that issue.
error message upon running the shell scripts :
>> [exec] soapui/bin/testrunner.sh SOAPUI_CLASSPATH=soapui/bin/soapui-3.0.jar: is not an identifier
We already found and fixed the problem:
With Solaris' sh it's not allowed to set and export
an environment parameter within one line:
export A=x
You have to use two statements:
A=x
export A.
2009-11-04 14:16:54 UTC in soapUI