Administrator

When a Domain Manager node is started, it automatically starts a Web Server to support the TIBCO ActiveSpaces® Transactions Administrator access to the domain.

The URL for the TIBCO ActiveSpaces® Transactions Administrator can be found using the display manager command after the domain manager has been installed and started. For example:

//
//     Display the URL for administrator 
//
Manager Service Name = ActiveSpaces Transactions Adminstrator
Manager URL = http://127.0.0.1:8080
Manager State = Active
Service Discovery State = Enabled
Service Discovery Name = domainmanager

Configuration

The TIBCO ActiveSpaces® Transactions Administrator configuration has a configuration type of km.

Activating the TIBCO ActiveSpaces® Transactions Administrator configuration starts the Web Server. Deactivating the configuration stops the Web Server.

Table 2.5, “TIBCO ActiveSpaces® Transactions Administrator Web Server configuration” defines the TIBCO ActiveSpaces® Transactions Administrator configuration parameters.

Table 2.5. TIBCO ActiveSpaces® Transactions Administrator Web Server configuration

NameTypeDescription
serviceNameStringThe service name of the TIBCO ActiveSpaces® Transactions Administrator Web Server that is published to service discovery. This name is also used in error messages raised by the server.
descriptionStringA description of the TIBCO ActiveSpaces® Transactions Administrator Web Server.
listenerAddressesString listA list of listener addresses on which the Web Server listens for requests. The format of these addresses is <protocol>:<host name>:<port number>. Protocol is one of TCP or SSL.

An example TIBCO ActiveSpaces® Transactions Administrator Web Server configuration is below.

Example 2.3. Example TIBCO ActiveSpaces® Transactions Administrator server configuration

//
//     Version 3.0 of a TIBCO ActiveSpaces® Transactions
 Administrator Web Server configuration
//
configuration "asta" version "3.0" type "km"
{
     configure kabman
     {
          Configuration
          {
               serviceName = "TIBCO ActiveSpaces® Transactions
 Adminstrator";
               description = "TIBCO ActiveSpaces® Transactions
 Administrator web server";
               listenerAddresses =
               {
                    "TCP:192.168.71.129:80"
               };
          };
     };
};

The IP address of the machine on which the Domain Manager is running must be resolvable by host name, not an IP address. If it is not, the TIBCO ActiveSpaces® Transactions Administrator web display will still work, but response time will be very slow. Example 2.4, “/etc/hosts File” shows an example host file entry that will perform IP address resolution by name.

Example 2.4. /etc/hosts File

127.0.0.1 localhost 
<machine IP address> <Domain Manager node name>