views:

27

answers:

1

Using Documentum DFC, I would like to set up a docbase connection without using a dmcl.ini.

How can I do such a thing?

+1  A: 

You can inject docbroker data into the DFC with Java like this :

IDfClient client = new DfClient()
IDfTypedObject config = client.getClientConfig();
config.setString("primary_host", <docbroker adress>);
config.setInt("primary_port", <docbroker port>);

IDfSessionManager manager = client.newSessionManager();
//use manager like usual
David Pierre