Search found 1770 matches

by jeremy_sg
Tue May 18, 2010 10:21 am
Forum: Support (Fortress)
Topic: Fortress Client and Eclipse dont' synch up.
Replies: 7
Views: 18376

Re: Fortress Client and Eclipse dont' synch up.

Something unexpected is definitely happening. Could you try looking at the timestamp on the files between the get operations? Also, could you try checking the Use CRC option in the GUI client and Eclipse?
by jeremy_sg
Wed May 05, 2010 10:30 am
Forum: Support (Vault)
Topic: Multiple Repositories in Eclipse
Replies: 3
Views: 11856

Re: Multiple Repositories in Eclipse

The main reason that we've never supported multiple repository connections or multiple server connections is that it doesn't work with atomic commits. In Vault we strive to make sure that when a commit succeeds, it works for all files that are checked in. I'm sure that you can appreciate the need fo...
by jeremy_sg
Wed May 05, 2010 9:06 am
Forum: Support (Vault)
Topic: Multiple Repositories in Eclipse
Replies: 3
Views: 11856

Re: Multiple Repositories in Eclipse

There really isn't any way of connecting to multiple repositories. I'm sorry to disappoint you, but there aren't any plans at the moment to add that capability. All of our Vault clients have this particular limitation.
by jeremy_sg
Thu Apr 29, 2010 10:30 am
Forum: Support (Vault)
Topic: Quick fix for UNKNOWN status
Replies: 26
Views: 92737

Re: Quick fix for UNKNOWN status

Is this a common occurrence for you? I understand that our tool failed you in this case. If you want to avoid this pain in the future, use the option to store cache information in the working folder. With that option you can move the working folder and cache together. Warning: when you set that opti...
by jeremy_sg
Wed Apr 28, 2010 7:59 am
Forum: Support (Vault)
Topic: Switching between branches in Eclipse
Replies: 5
Views: 11272

Re: Switching between branches in Eclipse

It's not that easy in Vault. Are you on Windows? If so, bring up the GUI client. unset the working folder for Branch A, then set the working folder for Branch B to that location. Do a get on Branch B, choosing to Overwrite any modified files. You might also want to consider deleting the local conten...
by jeremy_sg
Fri Apr 16, 2010 1:55 pm
Forum: Questions (API)
Topic: Writing an import utility with ChangeSetItem_CopyBranch
Replies: 2
Views: 12536

Re: Writing an import utility with ChangeSetItem_CopyBranch

Branches are designed to hold all items that get branched, not just the items that will change. The benefit of structuring this way is that a get of the branch will get all files needed for that branch to be built. The normal way of achieving the desired workflow: 1. Code in trunk up to the release ...
by jeremy_sg
Thu Apr 08, 2010 8:45 am
Forum: Support (Vault)
Topic: API question - GetByLabel_GetStructure followed by CheckOut
Replies: 1
Views: 7452

Re: API question - GetByLabel_GetStructure followed by CheckOut

I think that you have a pretty complex problem. Please email support at sourcegear.com ATTN: jeremy with a link to this thread. I'll phone you to discuss your needs.
by jeremy_sg
Wed Apr 07, 2010 8:59 am
Forum: Support (Vault)
Topic: API question -- ResolveUnknownFilesEvent
Replies: 1
Views: 7666

Re: API question -- ResolveUnknownFilesEvent

The ClientInstance should handle that event for you. I recommend that you do not add a listener for ResolveUnknownFilesEvent. The reason that this event occurs is that a file exists in the working folder, but was not fetched from Vault. The common cases for this: 1. The client cache directory was de...
by jeremy_sg
Tue Apr 06, 2010 12:49 pm
Forum: Questions (API)
Topic: ProcessCommandHistory datesort option doesnt work right
Replies: 2
Views: 12872

Re: ProcessCommandHistory datesort option doesnt work right

What you're seeing is a limitation of our VSS import. The import must do the transactions out of order, since VSS has no concept of a "folder version". The history from VSS will always be out of order when viewed in Vault, but every checkin will have the correct date. Future commits in Vau...
by jeremy_sg
Thu Mar 25, 2010 8:10 am
Forum: Questions (API)
Topic: How to retrieve Folder History
Replies: 3
Views: 17219

Re: How to retrieve Folder History

You need to query the history using the ProcessCommandHistory() method in ServerOperations. Set the recursive parameter to false to specify that you only want changes to that folder, and not items below it. If you read the command line client source, which is included in the VaultClientAPI zip file,...
by jeremy_sg
Wed Mar 24, 2010 8:58 am
Forum: Questions (API)
Topic: How to retrieve Folder History
Replies: 3
Views: 17219

Re: How to retrieve Folder History

It seems like you don't have the reference to VaultClientIntegrationLib right in your project (or your using statement is missing). Does that seem possible?

Another option is to use the Vault Command Line Client to generate an XML file with the history, and then load and parse the XML file.
by jeremy_sg
Thu Mar 18, 2010 8:11 am
Forum: Examples (API)
Topic: C# Purge Historical Data
Replies: 1
Views: 25690

Re: C# Purge Historical Data

Before you spend time coding this, you should know that the Vault Show Labels dialog can delete multiple labels at once. The method would then be: Log in to the repo. Show labels on Root. Select a bunch. Right-click and choose delete. I'm unsure if that's in 3.1, but I know that it's in 5.0. You may...
by jeremy_sg
Wed Mar 17, 2010 9:33 am
Forum: Questions (API)
Topic: Code to Purge
Replies: 4
Views: 18973

Re: Code to Purge

You can also use the GUI client's Show Labels dialog to quickly delete multiple labels.
by jeremy_sg
Wed Mar 17, 2010 9:32 am
Forum: Questions (API)
Topic: Code to Purge
Replies: 4
Views: 18973

Re: Code to Purge

In the ClientAPI zip, the VaultClientIntegrationLib has a method called ServerOperations.ProcessCommandDeleteLabel(), which you could use to delete old labels.
by jeremy_sg
Thu Mar 11, 2010 10:56 am
Forum: Support (Vault)
Topic: API help -- SubscribeWatcher
Replies: 2
Views: 8119

Re: API help -- SubscribeWatcher

SubscribeWatcher is for subscribing a user to emails when a folder changes.

What are you trying to do?