To inspect a component’s environment entries, use the following rhino-console command or related MBean operation.
Console command: getenventries
Command  | 
getenventries <ComponentID> [<true|false>]
    Returns the env entries for the specified SbbID or ProfileSpecificationID.
    The original env entries will be returned if the final argument is 'true'.
 | 
|---|---|
Example  | 
To list all environment entries for the SIP Registrar SBB: ./rhino-console getenventries SbbID[name=RegistrarSbb,vendor=OpenCloud,version=1.8] Getting env entries for component: SbbID[name=RegistrarSbb,vendor=OpenCloud,version=1.8] sipACIFactoryName:slee/resources/ocsip/acifactory sipProviderName:slee/resources/ocsip/provider  | 
MBean operation:  getEnvEntries
MBean  | 
|
|---|---|
Rhino operation  | 
public Map<String, String> getEnvEntries(ComponentID id, boolean original)
    throws NullPointerException, UnrecognizedComponentException,
    ManagementException, IllegalArgumentException;
This operation returns the environment entries associated with a component as a map of strings.  | 
