REMOTE_LOGON_NAME

CAS Tags
The REMOTE_LOGON_NAME string tag is used in taglists prepared for either the LOGON or OPEN_SESSION functions, to identify the name of an active CAS server within a NET SatisFAXtion domain that a local CAS instance should open a session with.

XML Interface:
The REMOTE_LOGON_NAME tag is included in the XML for all function taglists in the CAS XML Interface.  See CAS XML Communications for more information.

  Type Max Size Multiple Allowed
String 32 No

Example:
function OpenSession( CAS_instance )
  {
    // Open a session with the server.  We can open sessions
    // multiple times once we're logged on to the connection
    // router, but only one session can be open at a time.
      
  Tl = CAS.New();
  CAS.AddTag(Tl,"OPEN_SESSION","");
  CAS.AddTag(Tl,"REMOTE_LOGON_NAME","NETSATISFAXTION");
  
  Tl = CAS.Send(CAS_instance,Tl);
  StatusNum = parseInt(CAS.GetTag(Tl,"STATUS_NUM",0));
  CAS.Delete(Tl);
      
  if (StatusNum == 0)
    {
      // We could now send function requests to the server 
      // on the open session, but we'll just close it now 
      // for this example.
          
    Tl = CAS.New();
    CAS.AddTag(Tl,"CLOSE_SESSION","");
    Tl = CAS.Send(CAS_instance,Tl);
    CAS.Delete(Tl);
    }
  }

See Also:
LOGON, OPEN_SESSION