views:

131

answers:

1

We've recently moved to Team System and now a remote team needs access to our source. However, they use a different IP address to access the Team System server, and whenever they try to open a project, they are prompted to check out and change the project. Is there a way to work around this? It seems to be the 'SccAuxPath' property which is the problem.

EDIT: I found this article which explains that there are three ways to support distributed teams using TFS - VPN, reverse proxy, and a hosted solution. I'm accepting Jason Whitehorn's answer as he's suggesting the first option, VPN, which seems the best. If this isn't possible for us I'll suggest the reverse proxy option.

+2  A: 

I would assume (from the problems you are having) that your remote team is not accessing TFS via a VPN.

Regardless of how you local team and remote team are accessing TFS, the short of it is that both teams need to use the same server name when accessing TFS. Might I suggest using DNS entries instead of IP addresses. The DNS entries wouldn't need to be externally visible, and the local team could point to one IP while the remote team pointed to another.

Jason Whitehorn