I'm trying to get the latest version of TFS using Team Foundation Server API. This action I'm trying from a Windows Service with C#, I get error:
Workspace [] wss = vcs.QueryWorkspaces (null, vcs.AuthorizedUser,
System.Net.Dns.GetHostName().ToString ());
TF30063: You are not Authorized to access http://procasproject02:8080/.
But if I do it from a console application, it works well
Is it possible to get the latest version of tfs from a windows service?
Thanks