Command Line Designer
Overview
The NeoLoad Controller installation directory includes a utility tool named the Command Line Designer that can interact with the Design API server. This tool is a Java 7 program.
Usage
To use the Command Line Designer, go to the installation directory of NeoLoad 5.5 and execute the appropriate Java program:
java -cp "api/Common/java/*;api/Design API Client/java/*" com.neotys.rest.design.client.CommandLineDesigner -designAPIURL <NeoLoad Server API URL> -command <command name> [options]
If an identification is required on the Controller side, the -designAPIKey parameter must be included in the command. For more information about the identification, see REST APIs.
Recording examples
The example below illustrates how to start a recording using the Command Line Designer:
java -jar CommandLineDesigner.jar -designAPIURL http://localhost:7400/Design/v1/Service.svc/ -command StartRecording -VirtualUser myVU -BaseContainer Init -ProtocolWebSocket -ProtocolAdobeRTMP -UserAgent myUserAgentThe example below illustrates how to end a recording using the Command Line Designer:
java -jar CommandLineDesigner.jar -designAPIURL http://localhost:7400/Design/v1/Service.svc/ -command StopRecording -FrameworkParameterSearch -GenericParameterSearch
Refer to the Available methods section.
Home