The Java implementation NE Connection Handler needs to implement the IConnectionHandler
interface, which provides a common interface for interacting with connections and requires few methods to be written.
Different types of NE Connection Handlers can be created:
Telnet: When you create a new telnet NE Connection Handler, it generates code for telnet connections. This extends the telnet connection to support the interface. The NE Connection Handler editor indicates where additional code is required.
Custom: Create this NE Connection Handler if the connections are not telnet. Custom Connection Handlers generate a skeleton to implement the IconnectionHandler
and extends the base NE connection class. The NE Connection Handler editor indicates where additional code is required.
Creating New NE Connection Handlers
Generating a Telnet NE Connection Handler Implementation