Sample FUSCFG Configuration

Member FUSCFG, which is a sample shipped with this product, exists in the platform server EXECS library.

See the following sample FUSCFG configuration for your reference.
*   DEFAULT CONFIGURATION USED IF CONFIG=(OR CFG=) IS NOT ENTERED     
CONFIG=DEFAULT
STCNAME=FUSION
AUDPATH1=FUSION.AUDIT.PATH1
AUDPATH2=FUSION.AUDIT.PATH2 

*   SAMPLE CONFIG FOR STARTED TASK COMMUNICATION WITH FUSION SERVER     
CONFIG=FUSION_STC
STCNAME=FUSION
AUDPATH1=FUSION.AUDIT.PATH1
AUDPATH2=FUSION.AUDIT.PATH2 

*   SAMPLE CONFIG FOR SNA COMMUNICATION WITH FUSION SERVER USING SNA
CONFIG=FUSION_SNA
LUNAME=FUSNAPPL
ACB=FUSN
*MODENAME=#BATCH

*   SAMPLE CONFIG FOR TCP COMMUNICATION WITH FUSION SERVER USING IPADDR
CONFIG=FUSION_IPADDR
IPADDR=14.0.0.0
TCPIPJOBNAME=TCPIP
*IPPORT=46464

*   SAMPLE CONFIG FOR TCP COMMUNICATION WITH FUSION SERVER USING IPNAME
CONFIG=FUSION_IPNAME
IPNAME=NYES9000
TCPIPJOBNAME=TCPIP
*IPPORT=46464
The FUSCFG configuration member contains the following 5 configurations:
  • The default configuration: this configuration is defined by specifying CONFIG=DEFAULT. This configuration is used if the user does not enter the CONFIG (CFG) parameter on the platform server REXX or ISPF Interface. In this case, the default configuration is to use cross memory calls to the platform server started task, because the STCNAME parameter is defined.
  • Sample started task configuration: defines the configuration parameters for communicating with the platform server started task through cross memory calls. To use this configuration, you must specify CONFIG=FUSION_STC on the command line when you execute a platform server client request.
  • Sample SNA configuration: defines the configuration parameters required to communicate with the platform server started task through VTAM/SNA services. To use this configuration, you must specify CONFIG=FUSION_SNA on the command line when you execute a platform server client request.
  • Sample TCP IPADDR configuration: defines the configuration parameters required to communicate with the platform server started task through TCP/IP. Using this configuration, the platform server REXX attempts to make a connection to the platform server at IP address 14.0.0.0 (loopback address). To use this configuration, you must specify CONFIG=FUSION_IPADDR on the command line when you execute a platform server REXX exec.
  • Sample TCP IPNAME configuration: defines the configuration parameters required to communicate with the platform server started task through TCP/IP. Using this configuration, the platform server REXX attempts to make a connection to the platform server defined to the DNS as NYES9000. To use this configuration, you must specify CONFIG=FUSION_IPNAME on the command line when you execute a platform server REXX exec.