views:

707

answers:

3

Hello *,

I am trying to use tf.exe command line to setup a new workspace. I don't like the idea installing Team Explorer and therefore required Visual Studio.

Running tested command from the other machine where VS is installed causes security exception on this one since I am trying to connect to the TFS via https. I get the error string:

Team Foundation Server https://... does not exist or is not accessible at this time. Technical information (for administrator): The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel.

I tried to

  • ping the server => was fine
  • access it via IE => had to accept the certification, but otherwise fine

Are there any other things I can try?

Many thanks, Ovanes

A: 

Have you specified TFS port? SSL drops you automatically to 443 and TFS is using, as far as I remember port 8080.

You have to specify full url including port number when you connect for the first time. For example "http://team1server:8080".

Thanks for the answer. Yes I did. The server runs on 444 port.
ovanes
Can you enable HTPP (not HTTPS) connection for a moment to ensure there aren't any network problems? Let's eliminate that one first. Also, try to telnet TFS on the port you set up. It should connect.
I don't think I can do that. I am within a large enterprise. For now I can login to a domain without any problems. Since I do my tests from within a virtual machine I can save the state, install visual studio and try using the command line tools than, if it works => there is really smth. I have overseen. For now I can go to that URL in IE and it asks me to accept the certificate, what I do than.The only point I assume can make problems is that I copied the command line tools and dependent assemblies from the other machine with the same .NET Fw version. That's it!
ovanes
A: 

You may want to look into Team System Web Access

It provides web based access to much of the functionality of Team Explorer.

You can use Team System Web Access through a remote connection to perform the following functions:

  • Create, view, query for, and track work items.
  • Manage a project's document libraries.
  • View version-controlled files and related version information.
  • Manage the software build process by running builds and reviewing build results.
  • Generate reports to track status and trend information over time for a team project
Jeff Hall
Unfortunately this is not what I need. :(
ovanes
+1  A: 

Our ssl certificate was signed with some proprietary certificate (issued not by a known authority like Verisign), therefore I had to install the issuer certificate as the trusted root certificate. Afterwards everything worked fine.

Many thanks for your devotion.

ovanes