Member Manager Federation Repository

 

+
Search Tips   |   Advanced Search

 

The Member Manager Federation Repository in wmm.xml stores federation information between different main repositories.

Member Manager Federation Repository is only used when horizontal partitioning is set to true.

<repositories>
    <federationRepository 
        name="wmmDBFederation"
        UUID="FD"
        supportTransactions="true"
        adapterClassName="com.ibm.ws.wmm.db.DataBaseFederationAdapter" 
        dataSourceName="jdbc/wmmDS"
        databaseType="db2"
        dataAccessManagerClassName="com.ibm.ws.wmm.db.dao.db2.WMMDB2Dao"/>
</repositories>

 

Member Manager Federation Repository configuration attributes

 

name

The name of the repository. For the Member Manager Federation Repository, the default name is wmmDBFederation.

 

UUID

The universal unique identifier of the repository. We can use any name as long as it is unique in wmm.xml.

 

supportTransactions

Whether or not the repository supports transactions. Should be set to "true" for Member Manager Federation Repository.

 

adapterClassName

The implementation class name of the repository adapter. For the Member Manager Federation Repository, you should use...

com.ibm.ws.wmm.db.DataBaseFederationAdapter

 

dataSourceName

The JNDI name of the data source which points to the Member Manager database. The default is...

jdbc/wmmDS

If you are using a different name, then we need to update this attribute.

 

databaseType

The database type of the Member Manager database. Default is "db2". Other possible values are listed in the following table:

Database Type databaseType dataAccessManagerClassName
DB2 db2 com.ibm.ws.wmm.db.dao.db2.WMMDB2Dao
Cloudscape cloudscape com.ibm.ws.wmm.db.dao.cloudscape.WMMCloudscapeDao
Oracle oracle com.ibm.ws.wmm.db.dao.oracle.WMMOracleDao
Microsoft SQL Server 2000 sqlserver com.ibm.ws.wmm.db.dao.sqlserver.WMMSQLServerDao
DB2 on ZOS db2_zos com.ibm.ws.wmm.db.dao.db2zos.WMMDB2ZOSDao
DB2 on iSeries db2_iseries com.ibm.ws.wmm.db.dao.db2iseries.WMMDB2iSeriesDao

 

dataAccessManagerClassName

The implementation class name of the data access manager which is a component inside the Member Manager Federation Repository adapter provided by Member Manager. The default settings is "com.ibm.ws.wmm.db.dao.db2.WMMDB2Dao". Other values are listed in the database table above.

 

Parent Topic

Using multiple realms and user registries