Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space FUNCTDEV and version SOAVIRT_9.10.6_CTP_3.1.2

...

  1. Add [install dir]/plugins/com.parasoft.xtest.libs.web_[version]/root/com.parasoft.api.jar to your Java project classpath. You can also create a new project by going toFile> New> SOAtest>Custom Development> SOAtest Java Project orFile> New>Virtualize> Custom Development> Virtualize Java Project; this will create a new Java project that already has that .jar file added to the classpath.


    Info
    iconfalse
    titleBuilding 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>
  2. Implement the appropriate interfaces. See the following sections for details on implementing the appropriate interfaces:

    Interfaces to Implement for Custom Transports in SOAtest

    Interfaces to Implement for Custom Message Formats in SOAtest

    Interfaces to Implement for Custom Tools in SOAtest

    Interfaces to Implement for Custom Listeners in Virtualize

    Interfaces to Implement for Custom Message Formats in Virtualize

    Interfaces to Implement for Custom Tools in Virtualize


  3. Create a parasoft-extension.xml file in the default package of your Java project and configure it as appropriate for the item (or items) you’re adding.

...