Until recently I've been using the methods shown here:
https://craigrandall.net/archives/tag/dfs/page/3/ to upload and retrive content to documentum 7.2, and on a 16.3 system it works also. I believe my dotnet version was 3.5.
I recently started upgrading to DotNet 4.7.2 and noticed that connections to my 16.4 systems now fail. And the 7.2 system I sill have is ok.
Is there some known imcompatibility with 4.7.2 and 16.4? The error I get is:
authorization failed, please review identities provided in service context dfc_docbroker_excluded. dfc_docbroker_excluded
I haven't switched to using as method like:
IObjectService objectService;
ServiceFactory serviceFactory = ServiceFactory.Instance;
objectService = serviceFactory.GetRemoteService<IObjectService>(_serviceContext);
ObjectIdentity objIdentity = new ObjectIdentity(new ObjectId(objectId), _repository);
ObjectIdentitySet objectIdSet = new ObjectIdentitySet();
List<ObjectIdentity> objIdList = objectIdSet.Identities;
objIdList.Add(objIdentity);
As that seem to give me a innvocation to service Get failed