[ https://issues.apache.org/jira/browse/CMIS-969?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
J.-M. Kubek updated CMIS-969:
-----------------------------
Comment: was deleted
(was: There is no problem if I cast the child to Item instead of Document : "((Item) child).getPaths()"
instead of ((Document) child).getPaths())
> OpenCmis Bridge : NPA with child.getPaths()
> --------------------------------------------
>
> Key: CMIS-969
> URL: https://issues.apache.org/jira/browse/CMIS-969
> Project: Chemistry
> Issue Type: Bug
> Components: opencmis-bridge
> Affects Versions: OpenCMIS 0.13.0
> Environment: Client 0.13.0 / bridge 0.13.0
> Reporter: J.-M. Kubek
> Priority: Minor
>
> Hi,
> The following code raises an NPA when using opencmls bridge with atompub binding. The
bridge is using the stock SimpleForwardingCmisService.
> There is no problem when connecting directly to the target cmis service (nuxeo 7.10).
> public void BridgeNPA () {
>
> Folder rootFolder = directCmisSession.getRootFolder();
> Folder subFolder = FileUtils.createFolder(rootFolder, "TestNPA", "cmis:folder");
> FileUtils.createTextDocument(subFolder.getId(), "test.txt", "dummy content", "cmis:document",
VersioningState.MAJOR, directCmisSession);
> cmisSession.clear();
>
> OperationContext opContext = OperationContextUtils.createMaximumOperationContext();
> ItemIterable<CmisObject> childrenWithOpContext = subFolder.getChildren(opContext);
> for (CmisObject child: childrenWithOpContext) {
> if (child instanceof Document){
> ((Document) child).getPaths();
> }
> }
> /* The same without opContext
> ItemIterable<CmisObject> children = subFolder.getChildren();
>
> for (CmisObject child: children) {
> if (child instanceof Document){
> ((Document) child).getPaths();
> }
> }
> */
> }
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
|