About non-Java integration

This guide addresses the Neoload integration with an M-eux script programmed in Java, using a development environment like Eclipse. It is not applicable to M-eux scripts written in .NET.

To integrate Jamo with a script that is not programmed in Java, follow the Data Exchange API User guide.

Configure the project

To configure your Java project, it is recommended to use Maven.

Maven projects

In a Java Maven project, you need to add a dependency to the Maven settings file (pom.xml) using the examples below:

  1. Repository
    <repositories>
    	<repository>
    	<id>neotys-public-releases</id>
         <url>http://maven.neotys.com/content/repositories/releases/</url>
       		<releases><enabled>true</enabled></releases>
         <snapshots><enabled>false</enabled></snapshots>
    	</repository>
    </repositories>
    
    
  2. Dependency
    <dependencies>
    	<dependency>
    		<groupId>com.neotys.rest</groupId>
    		<artifactId>neotys-rest-api-dataexchange-client-olingo</artifactId>
    		<version>1.0.4</version>
    	</dependency>
    </dependencies>

Non-Maven projects

If your project is not developed using Maven, it is necessary to include the JAR files available in the \api folder of the NeoLoad installation directory:

Create the Data Exchange API client

For more information about the Data Exchange API Client, see Java Data Exchange API Client.