Which is the correct DFC interface hierarchy?
A. IDfSysObject extends IDfPersistentObject which extends IDfTypedObject.
B. IDfSysObject extends IDfTypedObject which extends IDfPersistentObject.
C. IDfFolder extends IDfCabinet which extends IDfSysobject.
D. IDfPermit extends IDfACL which extends IDfSysobject.
How can a client application adopt changes in the dmcl.ini settings regarding connection pooling?
A. by restarting the client application, because open sessions cannot adoptconnectionpooling setting changes
B. by restarting the repository in order to refresh the persistent cache
C. by restarting the Connection Broker in order to reinitialize the session mapping and adoptthe connection pooling changes
D. by rebooting the Content Server, which will flush the server connections and reinitializethe global repository
Both IDfSysObject.getContent() and IDfSysObject.getFile()retrieve content. What is the preferred method to access content?
A. always use IDfSysObject.getContent()
B. always use IDfSysObject.getFile()
C. use IDfSysObject.getContent() for relatively small size (few KB) content and useIDfSysObject.getFile() for larger content
D. use IDfSysObject.getFile() for relatively small size (few KB) content and useIDfSysObject.getContent() for larger content
The drawing depicts a virtual document A, with a child node of B. B is also a virtual document with two child nodes, C and D. Document B has 4 versions: one implicit version 1.2, and three others with symbolic labels, "Approved," "CURRENT," and "Released." Document B is early-bound to "Released" and setOverrideLateBindingValue() set to true. Document C has two versions, "Released" and "CURRENT" and is late-bound. Document D has two versions, "CURRENT" AND "Approved" and is late-bound. The virtual document is obtained using "Released" as the preferred version in the late binding value and setIncludeBrokenBindings defaults to false. Which versions are bound when the virtual document is traversed?
A. A=CURRENT, B=Released, C=Released, D=CURRENT
B. A=CURRENT, B=1.2, C=Released, D=Approved
C. A=CURRENT, B=Released, C=CURRENT, D=CURRENT
D. A=CURRENT, B=Released, C=Released, D=Broken
You have a repository with several million documents. The repository uses public ACLs to assign security for each division in an organization. What is the most efficient way to give read access to USER A for a batch of 100,000 documents while maintaining existing security on individual documents?
A. execute update dql to add USER A to each document
B. grant USER A READ permissions using IDfSysObject.grant()
C. add USER A to r_accessor_name for each acl that is referenced in the batch ofdocuments
D. create a new acl that gives USER A read permit and assign that acl to the batch ofdocuments
Which statement is true about TBOs?
A. A TBO can be shared between the repositories if it is registered in the global registry.
B. A TBO can be shared as long as the repositories contain the same object type for whichthe TBO is written.
C. A TBO cannot be shared between repositories.
D. A TBO is not extendable.
When does an SBO interface get deployed to client machines?
A. upon manual deployment
B. upon respoitory restart
C. upon client restart
D. upon refresh of the local BOF cache
The setDestinationDirectory(String dirPath) method of the IDfValidationOperation is used to set the _____.
A. destination directory for the validated XML file
B. location where the XML application can be found
C. temporary directory that will be used to validate the XML file
D. location where the corresponding DTD or schema used to manage the validation, can befound
What is the recommended way of handling a DfException within a TBO?
A. log the DfException only
B. propagate the DfException only
C. propagate and log the DfException
D. use a finally clause to ensure that exceptions are not thrown
Which statement is true about the IDfCollection object returned by IDfSession.apply() ?
A. Because it was not created by a query, it does not have to be closed.
B. It should be closed after the server method results are processeD.
C. It returns the content of the server method log file as a BLOB fielD.
D. It can be used to re-run the method in the case of a failure.