Search found 10 matches

by javaguy
Thu Feb 04, 2010 5:02 am
Forum: Support (Vault)
Topic: Shared folder - inconsistent links
Replies: 4
Views: 2707

Re: Shared folder - inconsistent links

Sorry, 4.1.4.
by javaguy
Thu Feb 04, 2010 5:01 am
Forum: Support (Vault)
Topic: Shared folder - inconsistent links
Replies: 4
Views: 2707

Re: Shared folder - inconsistent links

4.1.1 (18402)
by javaguy
Wed Feb 03, 2010 7:47 am
Forum: Support (Vault)
Topic: Shared folder - inconsistent links
Replies: 4
Views: 2707

Shared folder - inconsistent links

I have a problem with shared folders. If I create a folder $/A and share it to, say, $/MyShare/A it behaves as I expect. Looking at the folder's properties in the client shows the correct Share Link to $/A and vice versa. The folder icon also displays the <-> share decorator. However, when I restart...
by javaguy
Mon Jan 25, 2010 6:05 am
Forum: Questions (API)
Topic: List of shared paths
Replies: 5
Views: 9435

Re: List of shared paths

I'm in a similar position. Interestingly ServerOperations.client.ClientInstance.GetSharedPaths(file.ID) seemed to work
fine until I restarted my Vault server.

Could you explain the serverPath parameter please? I've tried a few things and keep getting an exception on the call.
by javaguy
Fri May 22, 2009 9:04 am
Forum: Questions (API)
Topic: Viewing Folder Trees in history
Replies: 12
Views: 18452

Re: Viewing Folder Trees in history

I was searching for "readd", instead of undelete. Ignore my comments about the GUI, I was just mentioning that I didn't see this functionality there. I implemented the method ChangeSetItemColl items = new ChangeSetItemColl(); VaultDeletedObject[] deletedObjects = ServerOperations.client.ge...
by javaguy
Fri May 22, 2009 4:11 am
Forum: Questions (API)
Topic: Viewing Folder Trees in history
Replies: 12
Views: 18452

Re: Viewing Folder Trees in history

Shannon, Thank you for your continued help! This method does exactly what is needed. The last problem I haven't figured out is the "re-adding" of something that has been deleted. So I have added a file "$/vaultest/folder/file" made some revisions and deleted it (say at revision 4...
by javaguy
Thu May 21, 2009 9:13 am
Forum: Questions (API)
Topic: Viewing Folder Trees in history
Replies: 12
Views: 18452

Re: Viewing Folder Trees in history

you shouldn't be accessing the children of the root through the VaultFolderDelta object, you should use the VaultClientFolder that was created using that delta. > You are 100% correct. This was my misunderstanding and after I changed that it works. I was reading too much into what the contents of t...
by javaguy
Thu May 21, 2009 5:30 am
Forum: Questions (API)
Topic: Viewing Folder Trees in history
Replies: 12
Views: 18452

Re: Viewing Folder Trees in history

Hi Shannon, This seems to work perfectly except for the children. The way I see it I can get to the children of this using: VaultFolderDelta[] vfdarray= vfd.get_Folders(); However VaultFodlerDelta.get_FullPath() doesn't seem to exist so, using your example I tried this: VaultClientFolder vcf = new V...
by javaguy
Wed May 20, 2009 11:28 am
Forum: Questions (API)
Topic: Viewing Folder Trees in history
Replies: 12
Views: 18452

Re: Viewing Folder Trees in history

Hi Shannon I am using vault 4.1.4. What I have right now is: private static List<Folder> buildTree(String root) { List<Folder> allFolders = new ArrayList<Folder>(); VaultClientFolder vcfolder = ServerOperations.ProcessCommandListFolder(root, false); VaultClientFolderColl coll = vcfolder.get_Folders(...
by javaguy
Wed May 20, 2009 10:30 am
Forum: Questions (API)
Topic: Viewing Folder Trees in history
Replies: 12
Views: 18452

Viewing Folder Trees in history

Hi, I am writing a small app using your JAVA API and using the C# and the Command Line APIs for testing I want to view (not retrieve) the files and the folders as they existed at a point in time (Folder Tree as of a version). I can do this in the GUI (see attached screenshot). 1) View->Show History ...