You must install and configure both the account server and the Prepaid Account Administration application. Additionally, you must configure the prepaid plug-in on the SAE and create and configure the service(s) that will use the prepaid accounts.
You must manually install the UMCppdemo package to deploy the account server.
![]() |
Note: The prepaid services demo is provided on the SRC application library CD. |
For information about installing the prepaid services demo, see Installing the Sample SRC Applications.
Before you start the account server for the first time, you must run a script to configure it. To configure the account server:
- 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
The sample configuration presented above configures the account server to publish the object references to a COS naming 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 Administration application 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 COS naming service. |
When you publish the objects to a COS naming 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 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.
Although the configuration script is sufficient to configure the account server for most purposes, you can also configure the server by using the command line.
For example, to publish the object references to a COS naming server running on server ns.domain.com, configure the account server as follows:
To start the account server:
The system responds with a start message.
To stop the account server:
The system responds with a stop message.
You configure the prepaid plug-in in the same way that you configure other SAE external plug-ins. For information about configuring SAE plug-ins, seeSRC PE Subscribers and Subscriptions Guide
The properties for this plug-in are as follows.
Plugin.prepaid.objectref
In the following example, the object reference has been published to a COS naming service running on the host ns.domain.com:
Plugin.prepaid.objectref = corbaname::ns.domain.com#demo/accountServer.plugin
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
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 for which 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.
You must deploy the WAR file for the Prepaid Account Administration application in the Web application server. You can find this file, accountAdmin.war, in the folder webapp on the SRC application library CD. Refer to the documentation for your Web application server for information about deploying applications.
For example, to deploy the Prepaid Account Administration application inside JBoss, copy the file to the JBoss /server/default/deploy directory.
- cp /cdrom/cdrom0/Demos+Sample_Applications/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.
You must configure the Prepaid Account Administration application with the object reference of the account manager. Configure the object reference as a <context-param> in the WEB-INF/web.xml file from the accountAdmin.war file. 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>