Search found 23 matches

by Tanguy
Wed Aug 03, 2016 3:08 am
Forum: Questions (API)
Topic: How do I check in an array of files?
Replies: 17
Views: 65240

Re: How do I check in an array of files?

Thank you Beth, that fixed my problem.
by Tanguy
Tue Aug 02, 2016 12:48 am
Forum: Questions (API)
Topic: How do I check in an array of files?
Replies: 17
Views: 65240

Re: How do I check in an array of files?

Hi Beth,

It isn't possible to give a comment when checking in.

Please look at the picture (attached) for the method signature.

Thank you in advance.
by Tanguy
Mon Aug 01, 2016 1:36 am
Forum: Questions (API)
Topic: How do I check in an array of files?
Replies: 17
Views: 65240

Re: How do I check in an array of files?

Hi Beth, In the Server Log I get these messages after a successful login. Then I tried to checkin some files as you can see and it failed: ----1/08/2016 9:17:08 mt--LBEvert(192.168.10.42)--SSL Disabled Login ----1/08/2016 9:17:22 mt--LBEvert(192.168.10.42)--SSL Disabled Logout ----1/08/2016 9:17:22 ...
by Tanguy
Wed Jul 20, 2016 1:01 am
Forum: Questions (API)
Topic: How do I check in an array of files?
Replies: 17
Views: 65240

Re: How do I check in an array of files?

Beth wrote:Are you checking on the Vault server?

To check the location of the log file by log into the Vault admin web page and click the Logging link.
I will check with my colleagues and reply as soon as I know more.
by Tanguy
Mon Jul 18, 2016 7:44 am
Forum: Questions (API)
Topic: How do I check in an array of files?
Replies: 17
Views: 65240

Re: How do I check in an array of files?

Beth wrote:The Vault Server Log is at C:\Windows\temp\sgvault\sgvault.log. In there, search for your Vault login name or your IP address to see entries that pertain to you.
I can't find the file C:\Windows\temp\sgvault\sgvault.log
by Tanguy
Mon Jul 18, 2016 7:08 am
Forum: Questions (API)
Topic: How do I check in an array of files?
Replies: 17
Views: 65240

Re: How do I check in an array of files?

Hi Beth,

The files I try to check in aren't 10 mb

Where can I find what's logged in my Vault server log? Thank you in advance.
by Tanguy
Fri Jul 15, 2016 1:32 am
Forum: Questions (API)
Topic: How do I check in an array of files?
Replies: 17
Views: 65240

Re: How do I check in an array of files?

Hi Jeff, I will write down the steps 1) I choose a folder from my repository to show all Checked out files (from that folder) http://i.imgur.com/auVHvKx.png 2) I check the files I want to check in, 3) and finally I click on Commit (but unfortunately I get the error which sais "Commit failed.&qu...
by Tanguy
Thu Jul 14, 2016 8:23 am
Forum: Questions (API)
Topic: How do I check in an array of files?
Replies: 17
Views: 65240

Re: How do I check in an array of files?

Hi Jeff,

Thank you for your reply, but I keep getting the error (see screenshot)

Image
by Tanguy
Thu Jul 14, 2016 7:02 am
Forum: Questions (API)
Topic: How do I check in an array of files?
Replies: 17
Views: 65240

How do I check in an array of files?

I am trying to check in a list of files, with the code below public void CheckInFiles(string prjPath, string labelName, string[] files) { ServerOperations.ProcessCommandCheckIn(files, UnchangedHandler.Checkin, false, LocalCopyType.Leave); } The items array contains strings like "$\Tools\VzpoApp...
by Tanguy
Thu Jul 14, 2016 12:48 am
Forum: Questions (API)
Topic: How do I get the latest version a project using .NET API?
Replies: 2
Views: 21316

Re: How do I get the latest version a project using .NET API

Thank you Beth. That's the exact solution to my problem.
by Tanguy
Thu Jul 14, 2016 12:47 am
Forum: Questions (API)
Topic: How do I get checked out files information?
Replies: 3
Views: 23376

Re: How do I get checked out files information?

Thank you Jeff
That is exactly what I was looking for. ;)
by Tanguy
Wed Jul 13, 2016 2:18 am
Forum: Questions (API)
Topic: How do I get checked out files information?
Replies: 3
Views: 23376

How do I get checked out files information?

I want to get the information of files that are checked out. The code below loops through each file of checkouts. Problem: the only (file) properties I can access are FileId and CheckOutUsers. Expectation: I need to get File Name and additional info if available. VaultClientCheckOutList chList = Ser...
by Tanguy
Fri Jul 08, 2016 2:58 am
Forum: Questions (API)
Topic: How do I get the latest version a project using .NET API?
Replies: 2
Views: 21316

How do I get the latest version a project using .NET API?

I want to know how to get the latest version of a project.

I'm using Vault Client .NET API.
by Tanguy
Thu Jul 07, 2016 3:28 am
Forum: Questions (API)
Topic: List All Label Names?
Replies: 13
Views: 69003

Re: List All Label Names?

FYI

I posted a solution on Stack Overflow --> http://stackoverflow.com/questions/3822 ... 0#38241920
by Tanguy
Thu Jul 07, 2016 3:21 am
Forum: Questions (API)
Topic: How do I list the available labels of a Project?
Replies: 4
Views: 23588

Re: How do I list the available labels of a Project?

After many attempts I was able to get all labels of a project by running the code below. I added two dll's (VaultLib.dll and VaultClientIntegrationLib.dll) in the References in Visual Studio Project and added using VaultLib; using VaultClientIntegrationLib; ServerOperations.client.LoginOptions.URL =...