Hi all,
I had this issue before in DFS6.0sp1, but ugraded to 6.5sp1.
We have a DFS-consuming web-application that servers some webpages. On the webpage we have a UCF applet, that gets the uid and jsessionid needed to start the UCF transfer in DFS.
On the client we can check a document out and open it in the associated editor. (We use hte VersionControlService.checkout). UCF takes care of all the details.
However, we want to re-open a locally editted file on the client (just like webtop -> edit does).
Using objectservice.get or versionservice.getCurrent we both get a new, read-only file, instead of the locally editted file.
In the activityinfo we pass this:
new ActivityInfo(j_session_id, null, uid, null, true);
We set this ActivityInfo in the ContentTranseferProfile of the serviceContext.
We also use OperationOptions with a contentProfile. This contentprofile has a setPostTransferAction("dfs:edit");
What should we do to re-open the locally editted file?
Thanks in advance.