Search found 81 matches

by Balthazor
Tue Feb 03, 2015 10:55 am
Forum: Questions (API)
Topic: ServerOperations.ProcessCommandShelve
Replies: 1
Views: 18583

ServerOperations.ProcessCommandShelve

Hello, I was hoping someone could provide an example of how to use the ServerOperations.ProcessCommandShelve. Specifically, I don't know how to create the ShelvesetItemIDEInfo array that's passed to the ProcessComandShelve method. Any help that could be provided on this would be much appreciated.
by Balthazor
Tue Jul 29, 2014 4:07 pm
Forum: Questions (API)
Topic: Editing Vault users through API
Replies: 3
Views: 21341

Re: Editing Vault users through API

Well I got it to mostly work. Yeah I am logging in with the AccessLevelType.Admin to access the user list, what I needed to do was to update the password along with the login name. All I can seem to do is null the password since the API doesn't seem to want to retrieve the existing password from the...
by Balthazor
Mon Jul 28, 2014 3:45 pm
Forum: Questions (API)
Topic: Editing Vault users through API
Replies: 3
Views: 21341

Editing Vault users through API

Hi, we need to update all our Vault user names and I'd like to write a quick utility to do this rather than having to manually change all the user names in the Vault Admin tool. I've got it to where it will change the user login, but the login will not work until I go into the Admin tool, open the n...
by Balthazor
Thu Oct 22, 2009 4:09 pm
Forum: Support (Vault)
Topic: This 260 character limit thing has Vault all hosed
Replies: 1
Views: 1565

This 260 character limit thing has Vault all hosed

I saw a couple topics on this already, but none of them seemed to be of any use. I created a folder in Vault, branched some files into it and checked those files out. During the checkout I got the 260 character limit error. The files show as checked out, but they were never fetched to the working fo...
by Balthazor
Fri Mar 20, 2009 9:10 am
Forum: Support (Vault)
Topic: Errors getting files from Vault client and Vault API
Replies: 1
Views: 1667

Errors getting files from Vault client and Vault API

Hello. I've been having issues doing a get latest on files from either the Vault client or the Vault API. It seems to happen when doing a recursive get latest on large number of files. When I do this through the Vault client, it starts getting files then errors out. It does get a fair number of the ...
by Balthazor
Thu Dec 18, 2008 11:03 am
Forum: Questions (API)
Topic: VaultRepositoryInfo members don't return data.
Replies: 3
Views: 7585

Re: VaultRepositoryInfo members don't return data.

This is the code I'm using:

VaultRepositoryInfo[] reps = null;
client.ListRepositories(ref reps);
foreach (VaultRepositoryInfo r in reps)
{
Repositories.Add(r.RepName, r);
}

Later on I'm getting info from the VaultRepositoryInfo objects that I've loaded into the SortedList Repositories.
by Balthazor
Tue Dec 16, 2008 3:26 pm
Forum: Support (Vault)
Topic: Vault Admin tool reporting questionable file count.
Replies: 5
Views: 3122

Re: Vault Admin tool reporting questionable file count.

AHA! I hate to say it, but I think I've found a bug. I created a new repository, so the filecount on that repository was 0. I created two folders and added a file to one of those folders. now the filecount is 1. Then I shared the file to the other folder. The filecount is still 1. Now I deleted the ...
by Balthazor
Tue Dec 16, 2008 2:13 pm
Forum: Support (Vault)
Topic: Vault Admin tool reporting questionable file count.
Replies: 5
Views: 3122

Re: Vault Admin tool reporting questionable file count.

So it would seem that the value shown by the Statistics must be coming from the tblrepositories.filecount, so I'm guessing that this value somehow got out of sync with what the actual number of files is. So now I'd be wondering if there's any way to "resync" that value without manually edi...
by Balthazor
Tue Dec 16, 2008 1:59 pm
Forum: Support (Vault)
Topic: Vault Admin tool reporting questionable file count.
Replies: 5
Views: 3122

Re: Vault Admin tool reporting questionable file count.

What was the final statistics count in Vault? Was it less than the file count you got, or more? I've noticed that Vault does not count shared files multiple times in the statistics. The final Statistics count is 390585. The count I got with my program iterating through all Vault files was 390648. I...
by Balthazor
Mon Dec 15, 2008 10:32 pm
Forum: Questions (API)
Topic: VaultRepositoryInfo members don't return data.
Replies: 3
Views: 7585

VaultRepositoryInfo members don't return data.

I'm noticing that the VaultRepositoryInfo.DeletedFileCount, VaultRepositoryInfo.DeletedFolderCount, VaultRepositoryInfo.DbSize and VaultRepositoryInfo.TreeSize seem to always be 0. The FolderCount and FileCount appear to work just fine. Is there something I need to do to get these to return data, or...
by Balthazor
Mon Dec 15, 2008 7:56 pm
Forum: Support (Vault)
Topic: Vault Admin tool reporting questionable file count.
Replies: 5
Views: 3122

Vault Admin tool reporting questionable file count.

So here's my story. Sorry if it ends up getting lengthy. I recently moved a bunch of files from a VSS database to Vault. I did this by simply getting latest on all the files in VSS to my hard drive then adding them to the Vault repository by means of the Add Files/Folders item in the Vault client. O...
by Balthazor
Mon Dec 15, 2008 1:15 pm
Forum: Support (Vault)
Topic: Vault will not allow folder names ending with a period.
Replies: 1
Views: 1574

Vault will not allow folder names ending with a period.

This is something I just noticed while comparing between a new Vault repository and the original VSS database. We had two folders in VSS that ended with a period, but those folders had the period removed when they were imported into Vault. If I try to add the period I get an error saying "inval...
by Balthazor
Wed Dec 10, 2008 11:31 am
Forum: Support (Vault)
Topic: Question: Sharing Files
Replies: 1
Views: 1440

Question: Sharing Files

Is there any way that, using the Vault API, to create a share link between files which already exist? The reason I ask is because in order to bring our files in from VSS we're having to basically get latest on all the VSS files and then bring them into Vault. There's just too much in our VSS databas...
by Balthazor
Tue Jul 22, 2008 7:39 am
Forum: Gold Support (Vault) -- Read-only
Topic: Binary files: worth branching or not?
Replies: 10
Views: 39341

Excellent! That's good news. Thanks for the update.
by Balthazor
Mon Jul 21, 2008 3:33 pm
Forum: Gold Support (Vault) -- Read-only
Topic: Binary files: worth branching or not?
Replies: 10
Views: 39341

Tri, be aware that when you branch in Vault, the modification date on the files will be changed to the date that the branch was made. My guess is you probably don't want to give your DLLs a new date stamp every time you branch.