2

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

How can I do such a thing?

enguerran
  • 3,193
  • 3
  • 26
  • 42

1 Answers1

4

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
  • 9,459
  • 4
  • 40
  • 32