Class AtmConTN3270
Provides TN3270 connection services for the AtmSession object.
Implements
Inherited Members
Namespace: Attachmate.Verastream.HostIntegrator.EAO2V
Assembly: Attachmate.Verastream.HostIntegrator.EAO2V.dll
Syntax
[ComVisible(true)]
[ClassInterface(ClassInterfaceType.None)]
[Guid("BB856C1C-CFEC-41CF-98D4-2D8743828810")]
public class AtmConTN3270 : IAtmConTN3270
Remarks
To use EAO2V AtmConTN3270, you must specify the IP Address or alias of a TN3270 server in the RemoteHostAddress property, a port number in the DestinationPort property, and the host name of the VHI session server in the Name property.
Properties
DestinationPort
Port number on the host to which you want to connect. Default value: 23. Set to 0 if you do not want to set the model variable "hostPort".
Declaration
public int DestinationPort { get; set; }
Property Value
Type | Description |
---|---|
int |
Name
Use this property to specify the hostname of the VHI session server. Default value is "localhost".
You can also set this to a string in the form "modelname@sesssrvrhostname".
If no model name is specified, the model used will be "Terminal3270".
Note that if you specify a model, it will receive the model variables "hostName" and "hostPort", and if your model does not contain those variables, connect will fail.
To use a model without "hostName" and "hostPort" model variables, clear DestinationPort and RemoteHostAddress.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
RemoteHostAddress
The IP address or alias of the host to which you want to connect. Set to NULL if you do not want to set the model variable "hostName".
Declaration
public string RemoteHostAddress { get; set; }
Property Value
Type | Description |
---|---|
string |
Timeout
In EAO, this is the connection timeout in seconds. In Host Integrator, the timout is determined in the model, and this property has no effect.
Declaration
public int Timeout { get; set; }
Property Value
Type | Description |
---|---|
int |