Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
ManifoldCF 1.8.1, ManifoldCF 2.0.1
-
None
-
None
Description
The way we form FileNet URIs is incorrect. The correct code:
protected static String convertToURI(String urlBase, String documentIdentifier, int elementNumber, String documentClass) { // Will this work for sub-types of documents too? ask - MHL return urlBase + "&id=" + documentIdentifier + "&element="+Integer.toString(elementNumber)+"&objectType=Document"; }