[Contents] [Prev] [Next] [Index] [Report an Error]


Installing and Configuring the Demo

You must install and configure both the account server and Prepaid Account Web Admin. Additionally, you must configure the prepaid plug-in on the SAE and create and configure the service(s) that will use the prepaid accounts.

Installing the UMCppdemo Package

You must manually install the UMCppdemo package to deploy the account server.

pkgadd -d /cdrom/cdrom0/solaris UMCppdemo

See SDX Software Basics Guide, Chapter 5, Installing the SDX-300 Software for more information about installing Solaris packages.

Configuring the Account Server

Before you start the account server for the first time, you must run a script to configure it. To configure the account server:

  1. On the SAE host, log in as root or as an authorized nonroot admin user.
  2. Launch the configuration script from the prepaid services demo installation directory.
  3. /opt/UMC/prepaid/etc/config
    
    
    
  4. The configuration script prompts you for input and confirms your choices, as in the following example:
  5. Which naming prefix shall be used for publishing the objects? 
    [demo/accountServer] [?,q] 
    
    demo/accountServer
    
    Which naming server do you want to use? [] [?,q]
    
    corbaname::localhost
    
    Which file name prefix shall be used for publishing the objects? [] [?,q] 
    
    /var/tmp/accountServer
    
    Which user-id shall be running the account server? [nobody] [?,q] 
    
    nobody
    
    COSName:    "demo/accountServer"
    
    NameServer: "corbaname::localhost"
    
    IORFile:    "/var/tmp/accountServer"
    
    USERID:     "nobody"
    
    Is this correct? y
    
    
    
  6. The script configures the account server according to your responses.

Publishing the Object References

The sample configuration presented above configures the account server to publish the object references to a CosNaming service and to a local file. Depending on your needs, you might want to choose only one or the other method.

NOTE: The account server and the Prepaid Account Web Admin must run on the same host for the local file feature to work. If you install these components on multiple hosts, you must configure the account server to publish the object references to a CosNaming service.


When you publish the objects to a CosNaming service, you specify the prefix of the published name, such as demo/accountServer, and the URL of the name server, such as corbaname::localhost. In this case the account server publishes the object reference of the plug-in to the URL corbaname::localhost#demo/accountServer.plugin. The account server publishes the object reference of the account manager to the URL corbaname::localhost#demo/accountServer.acctMgr

The local file is specified by the the path and prefix of the filename, /var/tmp/accountServer. In this case the account server publishes the object reference of the account manager to /var/tmp/accountServer.acctMgr and the object reference of the prepaid plug-in to /var/tmp/accountServer.plugin.

Manual Configuration

Although the configuration script is sufficient to configure the account server for most purposes, you can also configure the server via the command line.

For example, to publish the object references to a CosNaming server running on server ns.domain.com, configure the account server as follows:

#accountServer -ORBInitRef NameService=corbaname::ns.domain.com -c 
demo/accountServer

Starting and Stopping the Account Server

To start the account server:

  1. On the account server host, log in as root or as an authorized nonroot admin user.
  2. Start the account server from the root directory.
  3. /etc/init.d/accountServer start
    
    
    

The system responds with a start message.

To stop the account server:

  1. On the account server host, log in as root or as an authorized nonroot admin user.
  2. Stop the account server from the root directory.
  3. /etc/init.d/accountServer stop
    
    
    

The system responds with a stop message.

Configuring the SAE for the Prepaid Plug-In

You configure the prepaid plug-in in the same way that you configure other SAE plug-ins. For information about configuring SAE plug-ins, see SDX Components Guide, Vol. 1.The properties for this plug-in are as follows:

Plugin.prepaid.objectref

In the following example, the object reference has been published to a local file on the host:

Plugin.prepaid.objectref = file:/var/tmp/accountServer.plugin

Plugin.prepaid.attr

Configuring the Prepaid Services

Each defined service that uses prepaid accounts must be configured to use the prepaid plug-in as its authorization and tracking plug-in. For example, suppose you have a GameMaster premium gaming service that you want to use prepaid accounts. You must create this service with SDX Admin and enter the value "prepaid" into the Authorization Plugin and Tracking Plugin fields. See SDX Objects Guide, Chapter 1, Managing Services, for more information about creating and configuring services with SDX Admin.

Deploying the Prepaid Account Web Admin File

You must deploy the WAR file for Prepaid Account Web Admin in the Web application server.You can find this file, accountAdmin.war, in the folder webapp on the SDX Application Library CD. Refer to the documentation for your Web application server for information about deploying applications.

For example, to deploy Prepaid Account Web Admin inside JBoss, copy the file to the JBoss default/deploy directory.

cp /cdrom/cdrom0/webapp/accountAdmin.war 
/opt/UMC/jboss/server/default/deploy

JBoss automatically starts the application when a new WAR file is copied into the deploy directory.

Configuring Prepaid Account Web Admin

You must configure Prepaid Account Web Admin with the object reference of the account manager. Configure the object reference as a <context-param> in the file WEB-INF/web.xml. The parameter name is acctMgr and the value is a CORBA URL of the account manager object reference, as in the following example:

<context-param>
  <param-name>acctMgr</param-name>
  <param-value>corbaname::ns.domain.com#demo/accountServer.acctMgr

</param-value>
</context-param>


[Contents] [Prev] [Next] [Index] [Report an Error]