Is there any way to capture data on a virtualterminal other than Expect and Process ?
If not, can you provide me with ways to utilize each method ?
This is the code I'm using to kick off my virtualterminal:
telnet = new Telnet(aixServerName, port);
telnet.LogWriter = new Rebex.FileLogWriter("./MyLog.log", Rebex.LogLevel.Verbose);
vt = telnet.StartVirtualTerminal();
Thanks !
Chew