I made my first steps with the Client API. I write a simple test program to login to the server. The server is installed local on my machine.
Code: Select all
ServerOperations.client.LoginOptions.URL = "http://172.17.50.104/";
ServerOperations.client.LoginOptions.User = "fmuehlenkamp";
ServerOperations.client.LoginOptions.Password = "";
ServerOperations.client.LoginOptions.Repository = "tfc";
ServerOperations.Login();
ServerOperations.Logout();
Code: Select all
The connection to the server failed: server cannot be contacted or uses a protocol that is not supported by this client. Unable to connect to http://172.17.50.104/. No server was found at the specified URL.
I believe a very simple fault on my side [/code]