Forum Discussion

MartinSpamer's avatar
MartinSpamer
Frequent Contributor
13 years ago

Creating your own TestSteps in soapUI

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.

2 Replies

  • nmrao's avatar
    nmrao
    Community Hero
    Hi,
    Yes, it was an excellent article on extending soapUI functionality.

    I was able to do it some time back using the same information(url) mentioned your post, haven't faced any problem while building. I got soapUI-4.5.1 free version. Had minor issues during loading of soapui as mentioned the same post and resolved after changing the options in soapui.sh. You may take one more look at the same article.

    Regards,
    Rao.
  • nmrao's avatar
    nmrao
    Community 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