...
- Add the com.parasoft.api.jar file located in the
<INSTALL>/plugins/com.parasoft.ptest.libs.web_<VERSION>/root/
directory to your Java project classpath. You can also create a new Java project that already has the .jar file added to its classpath:- Go to File > New > Project.
Choose SOAtest > Custom Development > SOAtest Java ProjectChoose Virtualize > Custom Development > Virtualize Java ProjectChoose SOAtest or Virtualize > Custom Development > SOAtest or Virtualize Java Project
Info icon false title Building with Maven? If you’re building your Java project with Apache Maven, you can add the following to your project's pom.xml:
Code Block <project> ... <dependencies> <dependency> <groupId>com.parasoft.soavirt</groupId> <artifactId>com.parasoft.api</artifactId> <version>9.9.0</version> <!-- should match product version --> <scope>provided</scope> </dependency> </dependencies> ... <repositories> <repository> <id>ParasoftMavenPublic</id> <name>Parasoft Public Repository</name> <url>http://build.parasoft.com/maven/</url> </repository> </repositories> ... </project>
- Implement the appropriate interfaces. See the following sections for details on implementing the appropriate interfaces:
...