Vault 2.0.6 working folder state information incompatible

If you are having a problem using Vault, post a message here.

Moderator: SourceGear

Post Reply
tkroe
Posts: 2
Joined: Tue Apr 18, 2006 5:54 pm

Vault 2.0.6 working folder state information incompatible

Post by tkroe » Tue Apr 18, 2006 6:08 pm

Hi,

I am running VB6.0 SP6, Vault Client v2.0.6(2219), on Windows XP SP2. When using the Vault client, I keep getting an error message:

"The working folder state information for f:\ESSA\Vault_report\src is incompatible with this version of Vault. Please choose a different working folder path. The specific compatibility exception was: Ticks must be between DataTime.MinValue.Ticks and DateTime.MaxValue.Ticks. Parameter name:Ticks"

I have seen other posts about removing the cache files, which I've done. This only gives me a temporary reprieve, and the error soon reappears. I am running Net 2.0 as other posts alluded to, but have not deinstalled it.

Any help greatly appreciated, as this is becoming quite frustrating.

Thanks.

lbauer
Posts: 9736
Joined: Tue Dec 16, 2003 1:25 pm
Location: SourceGear

Post by lbauer » Wed Apr 19, 2006 8:34 am

Vault 2.0.6 is not supported on the 2.0 .NET Framework. If you have .NET Framework 1.1 on the machine, you can modify the VaultGUIClient.exe.config file in the Vault Client directory for that the client will use the proper framework:

Edit: I had posted info to change the framework on the server machine, which is not the issue here.

For the client side:

Add this between the <configuration> and <system.net> entries
<startup>
<requiredRuntime version="<dotnetversion>" safemode="true"/>
</startup>
For example, it would look like this in the config file:

Code: Select all

<configuration>
<startup>
<requiredRuntime version="v1.1.4322" safemode="true"/>
</startup>
<system.net>
Linda Bauer
SourceGear
Technical Support Manager

tkroe
Posts: 2
Joined: Tue Apr 18, 2006 5:54 pm

Post by tkroe » Wed Apr 19, 2006 10:47 am

That seems to have done the trick. Thanks very much for your help.

Post Reply