|
The setup and configuration of the inter system communication services over the TCP/IP protocol, requires no special setup. You simply have to configure the two XCICS regions involved in the communication, defining for both:
| • | an ISC oriented TCP service |
| • | a connection describing the partner |
Example configuration
Configuration of the region called CICSLX01:
set application_name=CICSLX01;
set local_sysid=LX01;
#
# TCP server for incoming ISC request
#
add tcpservice name=APPCSVC, port=8094, protocol=isc;
#
# connection to the CICSLNX1 system
#
add tcpservice name=APPCSVC, port=8094, protocol=isc;
define connection sysid=SU1T, type=tcp, netname=CICSSUN1, hostname=192.168.1.30, port=8094;
Configuration of the region called CICSSUN1
set application_name=CICSSUN1;
set local_sysid=SUN1;
#
# TCP server for incoming ISC request
#
add tcpservice name=APPCSVC, port=8094, protocol=isc;
#
# connection to the CICSLNX1 system
#
define connection sysid=LNX1, type=tcp, netname=CICSLX01, hostname=192.168.1.14, port=8094;
|