MASTER (JANUS DEFINE parameter): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
mNo edit summary
Line 15: Line 15:
<li> The servers may host server sockets for <var class="product">[[Janus Sockets]]</var> client (<var>[[JANUS DEFINE#type|CLSOCK]]</var>) calls, or (as of <var class="product">Sirius Mods</var> Version 7.9) <var class="product">[[Debugger|Janus/Sirius Debugger]]</var> client (<var>[[JANUS DEFINE#type|DEBUGGERCLIENT]]</var>) calls. A single <var>MASTER</var> port will serve as the access route to multiple external servers.  
<li> The servers may host server sockets for <var class="product">[[Janus Sockets]]</var> client (<var>[[JANUS DEFINE#type|CLSOCK]]</var>) calls, or (as of <var class="product">Sirius Mods</var> Version 7.9) <var class="product">[[Debugger|Janus/Sirius Debugger]]</var> client (<var>[[JANUS DEFINE#type|DEBUGGERCLIENT]]</var>) calls. A single <var>MASTER</var> port will serve as the access route to multiple external servers.  


A port defined as <var>MASTER</var> can be accessed on a <var class="product">Janus Sockets</var> or <var class="product">Debugger</var> connection request without specifying its port name on the $function, object method, or command  that establishes the connection to a remote server socket. The socket port name parameter on <var>$SOCK_CONN</var>, on the Socket object <var>New</var> constructor, on the <var class="product>HTTP Helper</var> <var>Get</var> and <var>Post</var> methods, and on the <var>[[SIRIUSDEBUG command|SIRIUS DEBUG ON]]</var> command defaults to the <var>MASTER</var> port, if any.
A port defined as <var>MASTER</var> can be accessed on a <var class="product">Janus Sockets</var> or <var class="product">Debugger</var> connection request without specifying its port name on the $function, object method, or command  that establishes the connection to a remote server socket. The socket port name parameter on <var>$SOCK_CONN</var>, on the Socket object <var>New</var> constructor, on the <var class="product>HTTP Helper</var> <var>Get</var> and <var>Post</var> methods, and on the <var>[[SIRIUS DEBUG, SIRDEBUG, or SIRIUSDEBUG command|SIRIUS DEBUG ON]]</var> command defaults to the <var>MASTER</var> port, if any.
</ul>
</ul>



Revision as of 18:13, 10 May 2012

<section begin="desc" />Set as default 'outgoing' port<section end="desc" />

MASTER is a parameter on the JANUS DEFINE command, which defines and sets characteristics of a Janus port.

This parameter specifies that this is the default port for outgoing connections to remote servers. A single MASTER port will serve as the access route to multiple external server address spaces.

  • The servers may be other Model 204 servers or may be Sybase/Microsoft servers that are to receive Janus Open Client function calls. Users accessing the Model 204 address space over an OPENSERVER port will use the same port they came in on for any outgoing Janus Open Client connections. Users accessing the Model 204 address space with other threads (for example, 3270 or web based applications) must have a MASTER port defined in order for the Janus Open Client functions to establish connections to other address spaces. Note that the port number is irrelevant for outgoing purposes, though it must still be specified.
  • The servers may host server sockets for Janus Sockets client (CLSOCK) calls, or (as of Sirius Mods Version 7.9) Janus/Sirius Debugger client (DEBUGGERCLIENT) calls. A single MASTER port will serve as the access route to multiple external servers. A port defined as MASTER can be accessed on a Janus Sockets or Debugger connection request without specifying its port name on the $function, object method, or command that establishes the connection to a remote server socket. The socket port name parameter on $SOCK_CONN, on the Socket object New constructor, on the HTTP Helper Get and Post methods, and on the SIRIUS DEBUG ON command defaults to the MASTER port, if any.

Multiple ports may be DEFINEd and STARTed with the MASTER parameter specified, but the one used in any particular instance will not be predictable.

MASTER is valid only for Janus Sockets client (CLSOCK), DEBUGGERCLIENT, OPENSERV, or SDS ports.

Examples

This command defines an SSL-protected, client socket MASTER port:

JANUS DEFINE CLMASTER * CLSOCK 5 TIMEOUT 240 REMOTE * * MASTER SSL 0 SSLOPT - SSLMAXCERTL 4096 SSLBSIZE 32767 LINEND 0D0A

See also