<channel name="TN3270" protocol="tn3270" port="9023" enabled="yes" />
The <channel> element uses shorthand notation with no closing tag.
<channel name="TN3270" protocol="tn3270" port="9023" enabled="yes"> </channel>
<channel name="TN3270" protocol="tn3270" port="9023" enabled="yes"> <ssl></ssl> </channel>
<clientAuth
certificateOption="{Allowed|Requested|Required}"
checkRevocation="{True|False}"
matchHostname="{True|False}"
checkUsage="{True|False}"></clientAuth>
<elf applidTemplate="format-string" dcasUserID="name" />
For information on valid values for the applidTemplate and dcasUserID attributes, see the Listener Channel Configuration - XML Reference topic.
The following is an example excerpt from seelistener.exe.config of a channel configuration with SSL client authorization enabled, ELF enabled, and DCAS communications enabled:
<channel name="TN3270ELF" port="9523" protocol="TN3270">
<ssl>
<certificate
file="c:/path/to/seelistener.pfx"
passphrase="Secret certificate passphrase"/>
<clientAuth
certificateOption="Required"
checkRevocation="False"
matchHostname="False"
checkUsage="False">
<elf applidTemplate="{0}-{1}" dcasUserID="SYSAD" />
</clientAuth>
</ssl>
</channel>