Hello,
We can't add or update documents within the LLTreeView application due to an exception.
The adding and updating of folders is working fine, but we are stuck in the documents.
The exception is within the Upload Content of the following method of the Content Service client Webservice:
public string UploadContent(ref LLTreeView.ContentService.OTAuthentication OTAuthentication, string contextID, LLTreeView.ContentService.FileAtts fileAtts, System.IO.Stream contents) {
LLTreeView.ContentService.UploadContentRequest inValue = new LLTreeView.ContentService.UploadContentRequest();
inValue.OTAuthentication = OTAuthentication;
inValue.contextID = contextID;
inValue.fileAtts = fileAtts;
inValue.contents = contents;
LLTreeView.ContentService.UploadContentResponse retVal = ((LLTreeView.ContentService.ContentService)(this)).UploadContent(inValue);
OTAuthentication = retVal.OTAuthentication;
return retVal.UploadContentResult;
}
The line where the exception occurs is: inValue.OTAuthentication = OTAuthentication;
The OTAuthentication is valid, we checked.
In the webservice logs we get the following exception:
DocumentManagement.GetNode() failed on the Livelink Server. No results were returned. Check the Livelink Server thread logs.
OpenText.ContentServer.API.LLIOException: DocumentManagement.GetNode() failed on the Livelink Server. No results were returned. Check the Livelink Server thread logs.
at OpenText.Livelink.Service.LAPI_SERVICE.InvokeService(String serviceName, String serviceMethod, LLValue args, LLValue env, LLFileInfo fileInfo, LLValue result)
at OpenText.Livelink.Service.LAPI_SERVICE.InvokeService(String serviceName, String serviceMethod, LLValue args, LLValue env, LLValue result)
at OpenText.Livelink.Service.DocMan.DocumentManagement.GetNode(Int32 ID)
2012-01-30 19:04:34,2544 WARN [10] Livelink error occurred
2012-01-30 19:04:34,2544 WARN [10] Status: 903101
2012-01-30 19:04:34,2544 WARN [10] Error Code: Core.DispatchedServiceThrewException
2012-01-30 19:04:34,2544 WARN [10] Error Message: Dispatched service DocumentManagement threw exception ? : ?
2012-01-30 19:04:34,2544 WARN [10] ApiError:
Can anyone help?