Forum Discussion
nmrao
13 years agoCommunity Hero
MartinSpamer wrote: The Blog article Creating your own TestSteps in soapUI offers an powerful technique for extending SOAPUI.
However the sample will not build because the following class is missing, moved or refactored.
com.eviware.soapui.config.TestStepConfig;
It is in the Java Doc (com.eviware.soapui.config.TestStepConfig) and Source Code
However It doesn't exist in build jars for either the Community or Pro versions.
Have you provided classpath while compling the code? probably you may try this. Goto the directory where custom classes are present.
Linux :
export CLASSPATH=$SOAPUI_HOME/bin/*.jar:$SOAPUI_HOME/lib/*.jar
javac -cp $CLASSPATH *.java
Windows :
set CLASSPATH=%SOAPUI_HOME%/bin/*.jar;%SOAPUI_HOME%/lib/*.jar
javac -cp %CLASSPATH% *.java