Configuration

ServiceTango may be configured via an XML formatted configuration file. This configuration file is used by ServiceTango to set general operating aspects of ServiceTango. For instance, where ServiceTango stores downloaded bundles. The configuration file is not used to denote what bundles should be loaded by ServiceTango. Ongoing management of a ServiceTango instance This section documents the syntax of this configuration file.

bean.deploy.<bean-alias>.ser

bean.deploy.<bean-alias>.protocol

Bean Deployment Properties
Use these properties to specify information needed to find an Enterprise Bean's classes, and properly host the bean.
<bean-alias> is an alias selected by you to specify the Enterprise Bean to be deployed. It does not necessarily reflect any information about the bean, it simply aliases the bean within the .properties file.
bean.deploy.<bean-alias>.ser
The name of the bean's generated Serialized Descriptor File. This serialized descriptor file is generated by the Sprout Server deployment tool and contains information about the deployment of the bean such as the class names for the remote and home interfaces. It may also contain database specific information such as a list of container managed fields in a table that match the attributes of an entity bean.
Example: Deploy the Login Bean from com.rims.base.ejb
bean.deploy.lg.ser=login.ser <'lg' is an arbitrary alias>


 
bean.registry.<protocol>.java.naming.factory.initial
bean.registry.<protocol>.java.naming.provider.url
Use these properties to give ServiceTango information about an object registry. When ServiceTango is started it will register beans deployed over a specific protocol in the appropriate registry.
bean.registry.<protocol>.java.naming.factory.initial
The full class name of the registry's JNDI factory class.
bean.registry.<registry-name>.java.naming.provider.url
The registry's URL.
Example:
bean.registry.iiop.java.naming.factory.initial=com.sun.jndi.cosnaming.CNCtxFactory
bean.registry.iiop.java.naming.provider.url=iiop://localhost:2401