My question about the iTest SDK ... is basically can some one show/post/link me to a "hello world" example ... no gui... just an example of an instantiation of a simple session object to connect to a router via telnet / ssh ... send a "show version" ... or a "ls -latr" to an ssh session on a linux box... and print the response in a system.out?
Maybe something like this:
Import <some.fanfare.class.objects....>
public class HelloWorld {
public static void main(String[] args) {
//initiatoin of objects...
...
...
...
//connect to the iTest device via the SDK APIs...
iTestSessionObject.ConnectTelnet(10.10.10.10);
//Send a command to the Device
String response = iTestSessionObject.sendCommmand("Show Version");
System.out.println("Output From the Session Profile receiving the command=" + response);
}
}
Thanks in advance for the help