Hi Folks,
I have a script which uploads a whole FS folder with some images and HTMLs on SAP document service, using bridge servlet and the openCMIS API. I managed a successful upload, but for some time now the script will fail with a
CmisObjectNotFoundException sporadically somewhere halfway through the upload procedure - each time on a different file. The exception is raised by CMIS when it tries to retrieve the document it had just created.
<code>
Exception in thread "main" org.apache.chemistry.opencmis.commons.exceptions.CmisObjectNotFoundException: op4-UqHFil4nh_Zz2eZwQCiox7-wbC8WrZui16LtJtc
at org.apache.chemistry.opencmis.client.bindings.spi.atompub.AbstractAtomPubService.convertStatusCode(AbstractAtomPubService.java:462)
at org.apache.chemistry.opencmis.client.bindings.spi.atompub.AbstractAtomPubService.read(AbstractAtomPubService.java:601)
at org.apache.chemistry.opencmis.client.bindings.spi.atompub.AbstractAtomPubService.getObjectInternal(AbstractAtomPubService.java:824)
at org.apache.chemistry.opencmis.client.bindings.spi.atompub.ObjectServiceImpl.getObject(ObjectServiceImpl.java:608)
at org.apache.chemistry.opencmis.client.runtime.SessionImpl.getObject(SessionImpl.java:410)
at org.apache.chemistry.opencmis.client.runtime.SessionImpl.getObject(SessionImpl.java:384)
at org.apache.chemistry.opencmis.client.runtime.FolderImpl.createDocument(FolderImpl.java:104)
at org.apache.chemistry.opencmis.client.runtime.FolderImpl.createDocument(FolderImpl.java:469)
</code>
Here is the corresponding piece of code. (It is executed in a loop for all the files that I create, and sporadically fails at an arbitrary file)
<code>
val contentStream = session.getObjectFactory().createContentStream(fileName, -1, mime, input) | |
val newFileProps = new HashMap[String, Object]; | |
newFileProps.put(PropertyIds.OBJECT_TYPE_ID, "cmis:document"); | |
newFileProps.put(PropertyIds.NAME, fileName); |
newFolder.createDocument(newFileProps, contentStream, VersioningState.NONE) |
</code>
Do you have any hints? I tried delete and recreate of the repo, didn't help.
Regards, Dimitar